Files
try_scrapy/try_scrapy/settings.py
T
2014-05-11 19:44:16 +05:30

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,
}