parent
ea9d5c17d3
commit
8d2397fcfb
@ -0,0 +1,19 @@
|
||||
# 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 VulcrawlPipeline:
|
||||
def process_item(self, item, spider):
|
||||
print(item)
|
||||
return item
|
||||
|
||||
class Vulcrawl2Pipeline:
|
||||
def process_item(self, item, spider):
|
||||
print(item)
|
||||
return item
|
Loading…
Reference in new issue