-
I wanted to add an async behavior while scraping single items from a URL using a Scrapy spider. Having Django Channels working great for other projects, I thought I might go with it instead of a similar server like
And here are my Django and scrapy files:
I tried to use many classes of channel consumers but I get a similar result. My guess would be there is some interference between Django channels and scrapy at the requirements level since they both use async functionality. Any ideas on why the error above |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Solved it by adding a middle layer, scrapyd |
Beta Was this translation helpful? Give feedback.
Solved it by adding a middle layer, scrapyd