mirror of
https://github.com/bendtherules/try_scrapy.git
synced 2026-08-19 00:35:07 +00:00
9 lines
263 B
Python
9 lines
263 B
Python
# 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 TryScrapyPipeline(object):
|
|
def process_item(self, item, spider):
|
|
return item
|