Skip to main content

persist item to the database table

Project description

Introduction

Use pipeline to persist item to the database, just provide the tablename

INSTALL

pip install scrapy_db_pipeline

Usage

configure on setting.py

DB_HOST = 'localhost'
DB_USER = 'root'
DB_PASSWORD = 'password'
DB_NAME = 'db_name

ITEM_PIPELINES = {
   #...
   'scrapy_db_pipeline.pipelines.DBStorePipeline': 300,
   #...
}

write your item

class CalendarItem(scrapy.Item):
    __table_name__ = 'your_table_name'
    some_item = scrapy.Field()

tips: You must create the table before running Scrapy. Because I can’t know what the type of your field on the database table.

TODO:

database support (if I have time):

  • [x] mysql

  • [ ] ….

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scrapy_db_pipeline-1.0.tar.gz (2.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page