【积累系列】'module' object has no attribute 'urlopen'解决方法

时间:2022-07-13 12:19:55

参考:http://blog.csdn.net/dai_fun/article/details/49887557



用的是Python 3.4

非常简单的一小段代码


[python] view plain copy print?

  1.     page = urllib.urlopen(url).read()  

报错:

    “AttributeError: 'module' object has no attribute 'urlopen'”

原因是Python3里的urllib模块已经发生改变,此处的urllib都应该改成urllib.request。

[python] view plain copy print?

  1.     page = urllib.request.urlopen(url)