CrawlerProcess vs CrawlerRunner
Scrapy’s documentation does a pretty bad job at giving examples on real applications of both. CrawlerProcess assumes that scrapy is the only thing that is going to use twisted’s reactor. If you are using threads in python to run other code this isn’t always true. Let’s take this as an example. from scrapy.crawler import CrawlerProcess … Read more