我用的PyCharm跑的,一直出問題,解釋器選的Python27的
顯示的問題:
?File "E:\0602test\urllib2.py", line 6, in <module>
? ? response1 = urllib2.urlopen(url)
AttributeError: 'module' object has no attribute 'urlopen'
代碼如下:
# -*- coding: utf-8 -*-
import urllib2
import cookielib
url = "http://www.baidu.com"
print "第一種方法"
response1 = urllib2.urlopen(url)
print response1.getcode()
print len(response1.read())
print "第二種方法"
request = urllib2.Request(url)
request.add_header("user-agent","Mozilla/5.0")
response2 = urllib2.urlopen(request)
print response2.getcode()
print len(response2.read())
print "第三種方法"
cj = cookielib.CookieJar()
opener = urllib.builb_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener(opener)
response3 = urllib.urlopen(url)
print response3.getcode()
print cj
print len(response3.read())
2017-06-03
看看你的python27/Lib目錄下的urllib2.py里面有沒有urlopen ? 我的python版本是2.7.13,正常
2017-08-25
請問沒有urlopen模塊 ? 怎么解決呢 ??