I just got set up and running scrapy and it works fine, but I have two questions (noob). First I have to say that I am completely new to screening and spider sites.
Can you limit the number of crawled links? I have a website that does not use pagination and simply lists many links (which I crawl) on their home page. It’s bad for me to crawl all of these links when I really need to crawl the first 10 or so.
How do you launch several spiders at once? I am using the command now scrapy crawl example.com, but I also have spiders for example2.com and example3.com. I would like to launch all my spiders using one command. Is it possible?
source
share