Metadata-Version: 1.0
Name: scrapy-sentry
Version: 0.6.1
Summary: Sentry component for Scrapy
Home-page: https://github.com/llonchj/scrapy-sentry
Author: Jordi Llonch
Author-email: llonchj@gmail.com
License: BSD
Description: scrapy-sentry
        =============
        
        Logs Scrapy exceptions into Sentry
        
        A python library that glues [Sentry](http://www.getsentry.com) with [Scrapy](http://www.scrapy.org).
        
        
        Requisites: 
        -----------
        
        * [Sentry server](http://www.getsentry.com/)
        
        Installation
        ------------
        
          ```
          pip install scrapy-sentry
          ```
        
        Setup
        -----
        
        Add `SENTRY_DSN` and `scrapy_sentry.extensions.Errors` extension to your Scrapy Project `settings.py`.
        
        Example:
        
          ```
          # sentry dsn
          SENTRY_DSN = 'http://public:secret@example.com/1'
          EXTENSIONS = {
              "scrapy_sentry.extensions.Errors":10,
          }
        
          ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
