diff --git a/FourmiCrawler/settings.py b/FourmiCrawler/settings.py index 0f5eae8..28272d0 100644 --- a/FourmiCrawler/settings.py +++ b/FourmiCrawler/settings.py @@ -8,8 +8,8 @@ BOT_NAME = 'FourmiCrawler' -SPIDER_MODULES = ['FourmiCrawler.spiders'] -NEWSPIDER_MODULE = 'FourmiCrawler.spiders' +SPIDER_MODULES = ['FourmiCrawler'] +NEWSPIDER_MODULE = 'FourmiCrawler' ITEM_PIPELINES = { 'FourmiCrawler.pipelines.FourmiPipeline': 100 } diff --git a/FourmiCrawler/spiders/Fourmispider.py b/FourmiCrawler/spider.py similarity index 100% rename from FourmiCrawler/spiders/Fourmispider.py rename to FourmiCrawler/spider.py diff --git a/FourmiCrawler/spiders/__init__.py b/FourmiCrawler/spiders/__init__.py deleted file mode 100644 index ebd689a..0000000 --- a/FourmiCrawler/spiders/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -# This package will contain the spiders of your Scrapy project -# -# Please refer to the documentation for information on how to create and manage -# your spiders.