[python-win32] Examples of Win32Inet use

2009-07-07 Thread Fadhley Salim
Now that SF seems to be back online, could somebody point me to some examples for how to use the win32inet functions? There's almost no documentation for this library, and I have not managed to find any examples working code which actually uses these functions. FYI, I'm still struggling to get

[python-win32] Examples of Win32Inet use

2009-07-07 Thread Roger Upole
The handle returned by InternetOpen isn't compatible with the WinHttp* functions. Try using win32inet.WinHttpOpen instead. Roger ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] Examples of Win32Inet use

2009-07-07 Thread Mike Driscoll
Fadhley Salim wrote: Now that SF seems to be back online, could somebody point me to some examples for how to use the win32inet functions? There's almost no documentation for this library, and I have not managed to find any examples working code which actually uses these functions. FYI,

Re: [python-win32] Examples of Win32Inet use

2009-07-07 Thread Fadhley Salim
+fadhley.salim=uk.calyon@python.org [mailto:python-win32-bounces+fadhley.salim=uk.calyon@python.org] On Behalf Of Roger Upole Sent: 07 July 2009 13:17 To: python-win32@python.org Subject: [python-win32] Examples of Win32Inet use The handle returned by InternetOpen isn't compatible with the WinHttp

Re: [python-win32] Examples of Win32Inet use

2009-07-07 Thread Tim Roberts
Fadhley Salim wrote: Thanks Roger, Would you care to comment about how to get the 3rd line of my script working? I'm guessing that the fault lies with my use of the Proxy options (the tuple argument) - this is supposed to map onto WINHTTP_AUTOPROXY_OPTIONS (

Re: [python-win32] Examples of Win32Inet use

2009-07-07 Thread Fadhley Salim
Sent: 07 July 2009 17:44 To: Python-Win32 List Subject: Re: [python-win32] Examples of Win32Inet use Fadhley Salim wrote: Thanks Roger, Would you care to comment about how to get the 3rd line of my script working? I'm guessing that the fault lies with my use of the Proxy options (the tuple

Re: [python-win32] Examples of Win32Inet use

2009-07-07 Thread Tim Roberts
Fadhley Salim wrote: Thanks for the advice. Unfortunately I'm not a C developer - I would have no idea how to go about this. I was hoping that there would be an easy way to use these functions purely in Python. Yes, there is. I am convinced the path you are on will lead to eventual