Metadata-Version: 2.1
Name: Kuyruk-Sentry
Version: 1.1.5
Summary: Sends exceptions in Kuyruk workers to Sentry.
Home-page: https://github.com/cenkalti/kuyruk-sentry
Author: Cenk Altı
Author-email: cenkalti@gmail.com
Keywords: kuyruk sentry
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Object Brokering
Classifier: Topic :: System :: Distributed Computing
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: kuyruk>=8.0.0
Requires-Dist: sentry-sdk>=0.15.1

# Kuyruk-Sentry

Sends exceptions in Kuyruk workers to Sentry.

## Install

    $ pip install kuyruk-sentry

## Usage

```python
from kuyruk import Kuyruk, Config
from kuyruk_sentry import Sentry
import sentry_sdk

sentry_sdk.init(dsn="...")  # configure Sentry

config = Config()
kuyruk = Kuyruk(config)

s = Sentry(kuyruk)

@kuyruk.task
def oops():
    1/0  # exception will be sent to Sentry
```
