scrapy/examples/experimental/imdb/imdb/pipelines.py

9 lines
248 B
Python

# Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: http://doc.scrapy.org/topics/item-pipeline.html
class ImdbPipeline(object):
def process_item(self, item, spider):
return item