Is there a way to run all of the spiders in a Scrapy project without using the Scrapy daemon? There used to be a way to run multiple spiders with scrapy crawl,
scrapy crawl
Why didn't you just use something like:
scrapy list|xargs -n 1 scrapy crawl
?