Python:urllib2.URLError: <urlopen error [Errno 11004] getaddrinfo failed>
巴扎黑
巴扎黑 2017-04-17 11:54:34
0
1
1619

使用Python读取某个网页的数据,如果网页打不开,就会报错
代码如下

url = "http://www.testxxxxxxxxxxx.com/";
urllib2.urlopen(url).read().decode('utf-8','ignore')

报错如下

urllib2.URLError: <urlopen error [Errno 11004] getaddrinfo failed>

刚刚试了下,这样没法捕获错误:

try:
    response= urllib2.urlopen(url)
    data    = response.read().decode('utf-8','ignore')
except urllib2.HTTPError,e:
    print e.code
    return ""
return data
巴扎黑
巴扎黑

全部回复(1)
左手右手慢动作

解决办法

try:
    response= urllib2.urlopen(url)
    data    = response.read().decode('utf-8','ignore')
except:
    return ""
return data

希望可以对和我一样的python菜鸟有所帮助~

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!