Skip to content

Instantly share code, notes, and snippets.

@datahutrepo
Last active October 5, 2016 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save datahutrepo/2cb30ccba9da12ac461e76e1d2f2144a to your computer and use it in GitHub Desktop.
Save datahutrepo/2cb30ccba9da12ac461e76e1d2f2144a to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
# Define your item pipelines here
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: http://doc.scrapy.org/en/latest/topics/item-pipeline.html
class AmazonPipeline(object):
def process_item(self, item, spider):
return item
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment