Dolf Michielsen schrieb: > Hi, > > I am using win32inet for retreiving web pages via InternetOpenUrl / > InternetReadFile. Now I would like to extend the functionality to also > POST data. However, it seems the WinINet functions HttpOpenRequest, > HttpAddRequestHeaders, HttpEndRequest and HttpSendRequest not available > in win32inet? > > Is there a way to send HTTP POST messages through the WinINet API using > pywin32? > > I would like to go through the WinINet API because it transparantly > handles the proxy settings if set correctly in IE; without bothering > with retreiving/setting the proxy handlers with e.g. urllib2
You could try to use the WinHTTP.WinHTTPRequest.5.1 COM object, with pywin32 or comtypes. Thomas _______________________________________________ python-win32 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-win32
