18 lines
554 B
Python
18 lines
554 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Scrapy settings for mobygames 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 = 'mobygames'
|
||
|
|
||
|
SPIDER_MODULES = ['mobygames.spiders']
|
||
|
NEWSPIDER_MODULE = 'mobygames.spiders'
|
||
|
|
||
|
# Crawl responsibly by identifying yourself (and your website) on the user-agent
|
||
|
USER_AGENT = 'scraping for a tumblr, will provide full attribution (+http://consultyourcodewheel.tumblr.com/)'
|