debug_level

python urllib2 开启调试

核能气质少年 提交于 2019-12-01 15:13:15
发一段在网上看见. USING HTTPLIB.HTTPCONNECTION.SET_DEBUGLEVEL() WITH URLLIB2 Posted on October 1, 2007, 9:52 pm, by jamiegrove, under python . I’ve been trying to get the debug level turned on in urllib2 for about an hour and now that it is working I thought I would post what I found… When using urllib, you can set the debuglevel directly by using something like this: import urllib, httplib httplib.HTTPConnection.debuglevel = 1 urllib.urlopen(“http://www.somesite.com”) However, when using urllib2 you need to create a handler install it for use. The sample below creates the lovely debuglevel handler.