Pro tip: Use `requests.Session()` with proxies. Saves you from re-authing every time.
Also, if python requests proxy keeps timing out, try lowering the timeout value. Some proxies are slower than snails.
`session.get(url, proxies=proxies, timeout=10)`
Works like a charm for me.
Also, if python requests proxy keeps timing out, try lowering the timeout value. Some proxies are slower than snails.
`session.get(url, proxies=proxies, timeout=10)`
Works like a charm for me.
