Skip to content

Instantly share code, notes, and snippets.

@osanyin
Created June 19, 2017 13:57
Show Gist options
  • Select an option

  • Save osanyin/ef7d28f4a17fd3a7b984b66d13cdff10 to your computer and use it in GitHub Desktop.

Select an option

Save osanyin/ef7d28f4a17fd3a7b984b66d13cdff10 to your computer and use it in GitHub Desktop.
spider_pipeline.py
class BookSpider(BaseSpider):
name = "book_spider"
custom_settings = {
'ITEM_PIPELINES': {
'my_app.pipelines.BookPipeline': 300,
}
}
def parse(self, response):
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment