Every time I tried to read data , it will give me below error.
ConnectionError: ('Connection aborted.', error(10060, 'A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
I tried with below code which usually can solve the proxy problem , no luck for zipline :
import urllib2
proxy_support = urllib2.ProxyHandler({"http":"proxyserver_name:8080"})
opener = urllib2.build_opener(proxy_support)
urllib2.install_opener(opener)
Please help!
many thanks