diff --git a/CinemScraper/spiders/grabVideoData.py b/CinemScraper/spiders/grabVideoData.py index 05f9924..0ddb780 100644 --- a/CinemScraper/spiders/grabVideoData.py +++ b/CinemScraper/spiders/grabVideoData.py @@ -15,9 +15,9 @@ class GrabvideodataSpider(scrapy.Spider): 'secondary_title' : '//h1/span[@class="sub"]/text()', 'date_event' : '//p[@class="date"]/text()', 'urlVideo' : '//iframe/@src', - #'urlCF' : 'response.url', 'description' : '//div[@class="description"]', - 'biographies' : '//div[@class="biographies"]' + 'biographies' : '//div[@class="biographies"]', + 'tags' : '//span[contains(@class, "tag")]/text()' } content_xpath = '//div[@id="content"]'