Subversion Repositories SmartDukaan

Rev

Rev 180 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
180 ashish 1
# Scrapy settings for demo project
2
#
3
# For simplicity, this file contains only the most important settings by
4
# default. All the other settings are documented here:
5
#
6
#     http://doc.scrapy.org/topics/settings.html
7
#
8
# Or you can copy and paste them from where they're defined in Scrapy:
9
# 
10
#     scrapy/conf/default_settings.py
11
#
12
 
13
BOT_NAME = 'demo'
14
BOT_VERSION = '1.0'
15
 
16
SPIDER_MODULES = ['demo.spiders']
17
NEWSPIDER_MODULE = 'demo.spiders'
18
DEFAULT_ITEM_CLASS = 'demo.items.DemoItem'
19
USER_AGENT = '%s/%s' % (BOT_NAME, BOT_VERSION)
227 ashish 20
DOWNLOAD_DELAY = 10