Last active
October 5, 2016 06:07
-
-
Save datahutrepo/2cb30ccba9da12ac461e76e1d2f2144a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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