Try
con.setdebuglevel(1)
This will allow debugging output, which, among other things, will print all the data sent.
, ( ), HTTPConnection _output, ( ). - :
class MyHTTPConnection(HTTPConnection):
def _output(self, s):
print repr(s)
super(MyHTTPConnection, self)._output(s)
, , , . httplib.