Metadata-Version: 1.1
Name: scrapy-mysql-pipeline
Version: 2019.7.19
Summary: Asynchronous mysql Scrapy item pipeline
Home-page: https://github.com/IaroslavR/scrapy-mysql-pipeline
Author: Iaroslav Russkykh
Author-email: iarruss@ya.ru
License: MIT
Description: .. figure:: https://img.shields.io/badge/Python-3.6-blue.svg
           :alt: Python 3.6
        
           Python 3.6
        
        scrapy-mysql-pipeline
        ---------------------
        
        Asynchronous mysql `Scrapy <https://doc.scrapy.org/en/latest/>`__ item
        pipeline
        
        Installation
        ^^^^^^^^^^^^
        
        .. code:: bash
        
           pip install scrapy-mysql-pipeline
        
        Configuration
        ^^^^^^^^^^^^^
        
        Add pipeline
        
        .. code:: python
        
           ITEM_PIPELINES = {
               'scrapy_mysql_pipeline.MySQLPipeline': 300,
           }
        
        Default values:
        
        .. code:: python
        
           MYSQL_HOST = 'localhost'
           MYSQL_PORT = 3306
           MYSQL_USER = None
           MYSQL_PASSWORD = ''
           MYSQL_DB = None
           MYSQL_TABLE = None
           MYSQL_UPSERT = False
           MYSQL_RETRIES = 3
           MYSQL_CLOSE_ON_ERROR = True
           MYSQL_CHARSET = 'utf8'
        
        ``MYSQL_USER``, ``MYSQL_PASSWORD``, ``MYSQL_DB`` and ``MYSQL_TABLE``,
        variables must be set in settings.py
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Scrapy
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
