Skip to content

Instantly share code, notes, and snippets.

@kevin-snippet
Created July 9, 2015 00:54
Show Gist options
  • Save kevin-snippet/a8720f8a643169ffeb0e to your computer and use it in GitHub Desktop.
Save kevin-snippet/a8720f8a643169ffeb0e to your computer and use it in GitHub Desktop.
scrapy: setting_template
BOT_NAME = 'so_users'
SPIDER_MODULES = ['so_users.spiders']
NEWSPIDER_MODULE = 'so_users.spiders'
DEFAULT_ITEM_CLASS = 'so_users.items.SoUsersItem'
ITEM_PIPELINES = [
# 'goodread.pipelines.RequiredFieldsPipeline',
# # 'dirbot.pipelines.FilterWordsPipeline',
'so_users.pipelines.MySQLStorePipeline',
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment