Make sure you have set the “name” property of the spider.
Example:
class campSpider(BaseSpider):
name="campSpider"
Without the name property, the scrapy manager will not be able to find your spider.
Make sure you have set the “name” property of the spider.
Example:
class campSpider(BaseSpider):
name="campSpider"
Without the name property, the scrapy manager will not be able to find your spider.