有谁知道如何在代理环境中设置iPython笔记本?
当我尝试下面的代码时,
url ='http://www.imdb.com/search/title?sort=num_votes,desc&start=1&title_type=feature&year=1950,2012' r = requests.get(url) print r.url
显示:
ConnectionError:HTTPConnectionPool(host ='mhsproxy.datastream.com',port = 80):url:http://www.imdb.com/search/title?sort=num_votes,desc&start=1&title_type=feature&year=1950,2012超出了最大重试次数(由ProxyError引起('无法连接到代理。',错误(10060, '连接尝试失败,因为连接方在一段时间后没有正确响应,或者建立的连接失败,因为连接的主机无法响应')))
提前致谢!
答案 0 :(得分:0)
这与您使用IPython笔记本无关,笔记本本身似乎工作得很好,因为您可以在其中编码。
您正在寻找的是在使用requests
库时如何设置代理。