Locally run all of the spiders in Scrapy

后端 未结 4 1670
忘掉有多难
忘掉有多难 2020-12-03 03:27

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,

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-03 04:12

    Why didn't you just use something like:

    scrapy list|xargs -n 1 scrapy crawl
    

    ?

提交回复
热议问题