操作系統(tǒng):Windows 7; 使用Python GUI Shell的Python 2.7.3我正在嘗試通過Python閱讀網(wǎng)站,并且有多個作者使用urllib和urllib2庫。要將網(wǎng)站存儲在變量中,我看到了類似的方法:import urllibimport urllib2g = "http://www.google.com/"read = urllib2.urlopen(g)最后一行在120+秒后生成錯誤:> Traceback (most recent call last): File "<pyshell#27>", line 1, in> <module>> r = urllib2.urlopen(o) File "C:\Python27\lib\urllib2.py", line 126, in urlopen> return _opener.open(url, data, timeout) File "C:\Python27\lib\urllib2.py", line 400, in open> response = self._open(req, data) File "C:\Python27\lib\urllib2.py", line 418, in _open> '_open', req) File "C:\Python27\lib\urllib2.py", line 378, in _call_chain> result = func(*args) File "C:\Python27\lib\urllib2.py", line 1207, in http_open> return self.do_open(httplib.HTTPConnection, req) File "C:\Python27\lib\urllib2.py", line 1177, in do_open> raise URLError(err) URLError: <urlopen error [Errno 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>我嘗試?yán)@過該g變量,并嘗試urlopen("http://www.google.com/")都不成功(在相同的時間長度后會生成相同的錯誤)。
添加回答
舉報(bào)
0/150
提交
取消