Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

debugging python web service

Tags:

python

urllib2

I am using the instructions found here, to try to inspect the HTTP commands being sent to my webserver.

However, I am not seeing the HTTP commands being printed on the console as suggested in the tutorial. Does anyone know how to display/debug the HTTP commands at the CLI?

I am running Python 2.6.5 on Linux Ubuntu

like image 320
skyeagle Avatar asked Dec 10 '10 00:12

skyeagle


1 Answers

The tutorial information seems to be deprecated.

Correct way to debug with urllib2 nowadays is:

import urllib2
request = urllib2.Request('http://diveintomark.org/xml/atom.xml')
opener = urllib2.build_opener(urllib2.HTTPHandler(debuglevel=1))    
feeddata = opener.open(request).read()

Debugging with urllib works the old way though.

like image 83
edgars Avatar answered Sep 17 '22 15:09

edgars