When the code below works
import requests monitor_r = requests.get(monitor_url, proxies=proxies, timeout=60*4)
I get these exceptions:
('Connection aborted.', BadStatusLine("''",)) # and ('Cannot connect to proxy.', error(32, 'Broken pipe')))
What are these errors and how to fix them?
source share