h = httplib.HTTPSConnection(host,port, timeout=15)
h.request('POST', url, data, headers)
r = h.getresponse()
Normally, I perform https post in python like given above. Now if I have a proxy server's username and password how can I perform https post using that proxy crendentials.