I have some Scrapy spiders which can crawl news from some newspapers. But currently I run them manually using this command -
scrapy crawl SpiderName
I am crawling news from 20 different news papers. I have 20 different spider classes to get this job done. So I have to run this command for 20 times when I want to crawl the latest news. I want it to be automatic. I want to write a script which can continuously crawl all these newspapers after a definite period of time. I have tried to do this using a infinite while loop. But this didn't work well. Is there any other standard way to do this?