Rev 136 | Blame | Compare with Previous | Last modification | View Log | RSS feed
# Scrapy settings for demo project## For simplicity, this file contains only the most important settings by# default. All the other settings are documented here:## http://doc.scrapy.org/topics/settings.html## Or you can copy and paste them from where they're defined in Scrapy:## scrapy/conf/default_settings.py#BOT_NAME = 'demo'BOT_VERSION = '1.0'SPIDER_MODULES = ['demo.spiders']NEWSPIDER_MODULE = 'demo.spiders'DEFAULT_ITEM_CLASS = 'demo.items.DemoItem'USER_AGENT = '%s/%s' % (BOT_NAME, BOT_VERSION)