initial commit

This commit is contained in:
2026-05-05 11:35:19 -04:00
commit cd3543bd0f
12 changed files with 507 additions and 0 deletions

13
scraper/pipelines.py Normal file
View File

@@ -0,0 +1,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 ScraperPipeline:
def process_item(self, item, spider):
return item