欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

No module named 'urllib2'

程序员文章站 2022-05-29 08:06:17
...
import urllib2  
response = urllib2.urlopen('http://www.baidu.com/')  
html = response.read()  
print html   

报错

import urllib2
ImportError: No module named 'urllib2'

 

import urllib.request
resp=urllib.request.urlopen('http://www.baidu.com')
html=resp.read()
print(html)

在python3.3里面,用urllib.request代替urllib2