socket.getaddrinfo失败错误

时间:2014-03-11 21:08:56

标签: python sockets

当我尝试使用urlib和socket模块时,我收到socket.getaddrinfo错误。 所以,我在SO上阅读了一些帖子,发现每个人都提供了改变HTTP_PROXY的解决方案。那么,我就改变了我的环境。变量,现在我可以打开:

import urllib, urllib2, httplib
url = 'http://www.google.com'
print "urllib"
data = urllib.urlopen(url)

但是,如果我尝试使用socket.addrinfo(host,port),我仍然会收到此错误:

sockt.gaierror: [Errno 11004] Failed

我正在尝试使用splunk SDK来调用socket类,并在设置连接时使用socket.getaddrinfo()函数。有谁知道它的解决方案?

0 个答案:

没有答案