标签:
使用Python的urllib读取网页,报错:[Errno 11004] getaddrinfo failed
主要原因是需要在Python中设置proxy
加入下面语句即可解决这个问题
proxy_support = urllib2.ProxyHandler({"http":"http://proxy.your_domain.com:8080/"})
opener = urllib2.build_opener(proxy_support)
urllib2.install_opener(opener)
[Errno 11004] getaddrinfo failed
标签:
原文地址:http://www.cnblogs.com/bluescorpio/p/4303489.html