In scrapy for example if i had two URL's that contains different HTML. Now i want to write two individual spiders each for one and want to run both the spiders at once. In scrapy is it possible to run multiple spiders at once.
In scrapy after writing multiple spiders, how can we schedule them to run for every 6 hours(May be like cron jobs)
I had no idea of above , can u suggest me how to perform the above things with an example.
Thanks in advance.
Here the code that allow you to run multiple spiders in scrapy. Save this code at the same directory with scrapy.cfg (My scrapy version is 1.3.3 and it works) :
and then you can schedule this python program to run with cronjob.
You should use scrapyd to handle multiple crawler http://doc.scrapy.org/en/latest/topics/scrapyd.html
You can try using
CrawlerProcess
If you want to see the full log of the crawl, set
LOG_FILE
in yoursettings.py
.It would probably be easiest to just run two scrapy scripts at once from the OS level. They should both be able to save to the same database. Create a shell script to call both scrapy scripts to do them at the same time:
Be sure to make this script executable with
chmod +x script_name
To schedule a cronjob every 6 hours, type
crontab -e
into your terminal, and edit the file as follows:The first * is minutes, then hours, etc., and an asterik is a wildcard. So this says run the script at any time where the hours is divisible by 6, or every six hours.