# Scrapy settings for movies 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 = 'movies'
SPIDER_MODULES = ['movies.spiders']
NEWSPIDER_MODULE = 'movies.spiders'
# Crawl responsibly by identifying yourself (and your website) on the user-agent
#USER_AGENT = 'movies (+http://www.yourdomain.com)'
DOWNLOAD_DELAY = 0.25 # 250ms delay between request.
DUPEFILTER_DEBUG = True # Log all duplicate requests ignored.