Open giacmarangoni opened 8 years ago
I had same issue and fixed it by changing this line: "yield from response.read_and_close(decode=False)" to this: "yield from response.text()" In the "async_mode.py" file.
After that I was getting a ClientResponseError which led me to wrap the "yield from response.text()" in a try except to handle the error gracefully.
It's working now :) Cheers.
Hi, I really want to thank you for your module, it's very nice. I'm trying to scrape bing using asynchronous mode but unfortunately I got this error:
GoogleScraper -s "bing" --keyword-file keywords -m http-async -v NOTSET
Any ideas?
Thank you.