mirror of
https://github.com/bendtherules/try_scrapy.git
synced 2026-08-18 13:52:52 +00:00
21 lines
553 B
Python
21 lines
553 B
Python
# Scrapy settings for try_scrapy project
|
|
#
|
|
# For simplicity, this file contains only the most important settings by
|
|
# default. All the other settings are documented here:
|
|
#
|
|
# http://doc.scrapy.org/en/latest/topics/settings.html
|
|
#
|
|
|
|
BOT_NAME = 'try_scrapy'
|
|
|
|
SPIDER_MODULES = ['try_scrapy.spiders']
|
|
NEWSPIDER_MODULE = 'try_scrapy.spiders'
|
|
|
|
# Crawl responsibly by identifying yourself (and your website) on the user-agent
|
|
#USER_AGENT = 'try_scrapy (+http://www.yourdomain.com)'
|
|
|
|
ITEM_PIPELINES = {
|
|
|
|
'try_scrapy.pipelines.JsonWriterPipeline': 800,
|
|
}
|