Sep-16-2019, 12:18 PM
Can be problem on your network,port,firewall...ect.
Try first to see if ordinary requests work.
Try first to see if ordinary requests work.
import requests r = requests.get("http://www.google.com") print(r.text[:200])Then try using a proxy free-proxy ,try several and with more than one time as the can go up and down
import requests r = requests.get("http://www.google.com", proxies={"http": "http://45.77.136.228:8118"}) print(r.text[:200])So if it don't work a normal error is
Failed to establish a new connection: [WinError 10060]
as you get.