scrapfly / python-scrapfly

Scrapfly Python SDK for headless browsers and proxy rotation
https://scrapfly.io/docs/sdk/python
Other
28 stars 8 forks source link

disable brotli #4

Closed louisabraham closed 3 years ago

louisabraham commented 3 years ago

Hi, it seems that brotli is making our application use much more CPU. Could we have a parameter to disable brotli, even if it is installed?

jjsaunier commented 3 years ago

Hello,

Yes, I will add an option to explicitly disable brotli compression even if the package is available

jjsaunier commented 3 years ago

@louisabraham please upgrade to the latest version pip install scrapfly-sdk -U you can now explicitly disable brotli even if lib is present as following :

scrapfly = ScrapflyClient(key='xxxx', brotli=False)
louisabraham commented 3 years ago

Thanks!