1# -*- coding: utf-8 -*- 2 3# Define your item pipelines here 4# 5# Don't forget to add your pipeline to the ITEM_PIPELINES setting 6# See: https://doc.scrapy.org/en/latest/topics/item-pipeline.html 7 8 9class OpentablePipeline(object): 10 def process_item(self, item, spider): 11 return item 12 13