博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
urllib设置debuglevel打开调试开关
阅读量:5277 次
发布时间:2019-06-14

本文共 779 字,大约阅读时间需要 2 分钟。

1. 参考

 

2. 代码

(1) python2

1 # python22 import httplib3 import urllib4 httplib.HTTPConnection.debuglevel = 15 response = urllib.urlopen('http://www.baidu.com').read()

 

(2) 兼容python2和python3

1 import sys 2 try: 3     import urllib.request as urllib_request  #python3 4 except: 5     import urllib2 as urllib_request  #python2 6 print(sys.version)     7 httpHandler = urllib_request.HTTPHandler(debuglevel=1) 8 httpsHandler = urllib_request.HTTPSHandler(debuglevel=1) 9 opener = urllib_request.build_opener(httpHandler, httpsHandler)10 print(opener.open('https://httpbin.org/user-agent').read().decode('utf-8'))11 #install_opener之后才能全局12 urllib_request.install_opener(opener)13 response = urllib_request.urlopen('http://www.baidu.com')

 

转载于:https://www.cnblogs.com/my8100/p/7061147.html

你可能感兴趣的文章
我眼中的Android IDE
查看>>
LeetCode 112. Path Sum
查看>>
mkpasswd
查看>>
C++默认参数值函数
查看>>
java中的占位符\t\n\r\f
查看>>
7.14
查看>>
IPython使用
查看>>
SDN2017 第一次作业
查看>>
MySQL通过frm 和 ibd 恢复数据过程
查看>>
AngularJs 学习笔记(2)
查看>>
关于元素优先级
查看>>
oo第一单元作业总结
查看>>
SRS源码——Listener
查看>>
web.xml 4.0 头
查看>>
一些有用的sql语句
查看>>
Java面向对象抽象类案例分析
查看>>
Python之路(第十八篇)shutil 模块、zipfile模块、configparser模块
查看>>
[LeetCode] Binary Tree Maximum Path Sum
查看>>
[Algorithms] Longest Increasing Subsequence
查看>>
Javascript实现页面左边的菜单选中项高亮显示
查看>>