为了账号安全,请及时绑定邮箱和手机立即绑定

第三种方法,最后一个的显示有问题,请大神指教一下

http://img1.sycdn.imooc.com//5ec5f13700014e5009100259.jpg

这个是执行的结果,不知道为什么有问题,应该是编码问题,有没有大神指教一下

正在回答

2 回答

cj = http.cookiejar.CookieJar()
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
response3 = urllib.request.urlopen(url)
print(response3.getcode())
print(cj)
print(len(response3.read()))

0 回复 有任何疑惑可以回复我~
import urllib.request
from http import cookiejar
url='https://www.baidu.com/'
print('第一种方法')
response1=urllib.request.urlopen(url)
print(response1.getcode())
print(len(response1.read()))


print('第二种方法')
request = urllib.request.Request(url)
request.add_header('user-agent',"Mozilla/5.0")
response2=urllib.request.urlopen(request)
print(response2.getcode())
print(len(response2.read()))


print('第三种方法')

cookie=cookiejar.CookieJar()
cj=cookie
opener=urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
response3=urllib.request.urlopen(request)
print(response3.getcode())
print(cj)
print(response3.read())


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

第三种方法,最后一个的显示有问题,请大神指教一下

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信