setup scrapy project defaults

This commit is contained in:
Xevion
2021-03-14 10:01:17 -05:00
parent 356813ed64
commit 1f6f3246ae
8 changed files with 235 additions and 0 deletions

12
scraper/items.py Normal file
View File

@@ -0,0 +1,12 @@
# Define here the models for your scraped items
#
# See documentation in:
# https://docs.scrapy.org/en/latest/topics/items.html
import scrapy
class ScraperItem(scrapy.Item):
# define the fields for your item here like:
# name = scrapy.Field()
pass