pipelines.py 357 字节
Newer Older
梦想橡皮擦's avatar
52&53  
梦想橡皮擦 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# Define your item pipelines here
#
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html


# useful for handling different item types with a single interface
from itemadapter import ItemAdapter


class TaoPipeline:
    def process_item(self, item, spider):
        return item