Metadata-Version: 2.1
Name: Kuyruk-Sentry
Version: 1.1.4
Summary: Sends exceptions in Kuyruk workers to Sentry.
Home-page: https://github.com/cenkalti/kuyruk-sentry
Author: Cenk Altı
Author-email: cenkalti@gmail.com
License: UNKNOWN
Description: # 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
        
        config = Config()
        config.KUYRUK_SENTRY_DSN = "..."
        
        kuyruk = kuyruk.Kuyruk(config)
        
        s = Sentry(k)
        
        @kuyruk.task
        def oops():
            1/0  # exception will be sent to Sentry
        ```
Keywords: kuyruk sentry
Platform: UNKNOWN
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
