Metadata-Version: 2.1
Name: scrapy-toolbox
Version: 0.0.1
Summary: Saves Scrapy exceptions in your Database
Home-page: https://github.com/janwendt/scrapy-toolbox
Author: Jan Wendt
License: UNKNOWN
Download-URL: https://github.com/janwendt/scrapy-toolbox/archive/0.0.1.tar.gz
Description: scrapy-toolbox
        =============
        
        Saves Scrapy exceptions in a Database
        
        
        Requisites: 
        -----------
        
        * settings.py with a dict for DATABASE_DEV and DATABASE
        
        Installation
        ------------
        
          ```
          pip install scrapy-toolbox
          ```
        
        Setup
        -----
        
        Add `scrapy_toolbox.errorhandling.ErrorSavingMiddleware` extension to your Scrapy Project `settings.py`.
        
        Example:
        
          ```
          # settings.py
          SPIDER_MIDDLEWARES = {
              'scrapy_toolbox.error_handling.ErrorSavingMiddleware': 1000,
          }
        
          ```
        
        Supported versions
        ------------------
        This package works with Python 3. It has been tested with Scrapy up to version 1.4.0.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
