diff --git a/scrarls.py b/scrarls.py index 2b1372a..fe3884b 100644 --- a/scrarls.py +++ b/scrarls.py @@ -9,6 +9,11 @@ from scrapy.spiders import CrawlSpider, Rule from scrapy.linkextractors import LinkExtractor +class TvShowItem(scrapy.Item): + title = scrapy.Field() + release_date = scrapy.Field() + + class TvShow(CrawlSpider): name = "rlsb_tvshow" allowed_domains = ["rlsbb.ru"]