Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 391 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 391 Bytes

Scrapy-sqlite-item-exporter

Export items to sqlite3 database crawled by scrapy 1.4

How to use

1. Place exporters.py to your project script directory.
2. In settings.py,

	FEED_EXPORTERS = {
	    'sqlite': '<script directory>.exporters.SqliteItemExporter',
	}

3. In terminal,$ scrapy crawl <spider name> -o sqlite.db -t sqlite