I have multiple json config file, but only one universal spider. If we follow like this
settings = get_project_settings()process = CrawlerProcess(settings)process.crawl(jsonname1)process.crawl(jsonname2)process.start()
it will throw
twisted.internet.error.ReactorAlreadyInstalledError: reactor already installed
I think is universal spider create multiple times cause this. how to solve it?
I have multiple json config file, but only one universal spider. If we follow like this
settings = get_project_settings()
process = CrawlerProcess(settings)
process.crawl(jsonname1)
process.crawl(jsonname2)
process.start()
it will throwtwisted.internet.error.ReactorAlreadyInstalledError: reactor already installed
I think is universal spider create multiple times cause this. how to solve it?