From c4f785286c54bda80556ea294f77109e4d7256e1 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Sat, 25 Jun 2022 17:03:57 +0100 Subject: [PATCH] chore: change spider name for anthems spider --- .../wikipedia_country_scraper/spiders/anthems.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/anthems.py b/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/anthems.py index 30710a9..c4cdedf 100644 --- a/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/anthems.py +++ b/01_scrapy/wikipedia_country_scraper/wikipedia_country_scraper/spiders/anthems.py @@ -8,7 +8,7 @@ from wikipedia_country_scraper.items import AnthemsItem class AnthemsSpider(scrapy.Spider): - name = "anthems" + name = "AnthemsSpider" start_urls = ["https://en.wikipedia.org/wiki/List_of_national_anthems"] custom_settings = { "ITEM_PIPELINES": {"wikipedia_country_scraper.pipelines.AnthemDownloadFilesPipeline": 100},