Re: [Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2]

2008-08-19 Thread Kent Johnson
On Mon, Aug 18, 2008 at 9:36 PM, xbmuncher <[EMAIL PROTECTED]> wrote: > I tried it just like both of you suggested and sent a req object straight to > urlopen. Here is my code: > import urllib2 > url = 'https://url.com' > headers = { > 'User-Agent' : 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'

Re: [Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2

2008-08-19 Thread arsyed
On Mon, Aug 18, 2008 at 9:26 PM, xbmuncher <[EMAIL PROTECTED]> wrote: > > > On Mon, Aug 18, 2008 at 8:44 PM, Kent Johnson <[EMAIL PROTECTED]> wrote: >> >> On Mon, Aug 18, 2008 at 12:40 PM, xbmuncher <[EMAIL PROTECTED]> wrote: >> > I wanted to use the urllib2.https_open() but it said the module did

Re: [Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2]

2008-08-19 Thread arsyed
On Mon, Aug 18, 2008 at 9:36 PM, xbmuncher <[EMAIL PROTECTED]> wrote: > I tried it just like both of you suggested and sent a req object straight to > urlopen. Here is my code: > import urllib2 > url = 'https://url.com' > headers = { > 'User-Agent' : 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'

Re: [Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2]

2008-08-18 Thread xbmuncher
I tried it just like both of you suggested and sent a req object straight to urlopen. Here is my code: import urllib2 url = 'https://url.com' headers = { 'User-Agent' : 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)', 'Accept' : 'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/

Re: [Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2

2008-08-18 Thread xbmuncher
On Mon, Aug 18, 2008 at 8:44 PM, Kent Johnson <[EMAIL PROTECTED]> wrote: > On Mon, Aug 18, 2008 at 12:40 PM, xbmuncher <[EMAIL PROTECTED]> wrote: > > I wanted to use the urllib2.https_open() but it said the module did not > > exist. > > I'm not aware of a urllib2.https_open() function. I think yo

Re: [Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2

2008-08-18 Thread Kent Johnson
On Mon, Aug 18, 2008 at 12:40 PM, xbmuncher <[EMAIL PROTECTED]> wrote: > I wanted to use the urllib2.https_open() but it said the module did not > exist. I'm not aware of a urllib2.https_open() function. I think you just give an https url to urllib2.urlopen(). Can you show us your actual code and

Re: [Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2]

2008-08-18 Thread arsyed
On Mon, Aug 18, 2008 at 4:25 PM, bob gailer <[EMAIL PROTECTED]> wrote: > Forwarding to the list. Please always reply to the list. > > -- > Bob Gailer > Chapel Hill NC 919-636-4239 > > When we take the time to be aware of our feelings and needs we have more > satisfying interatctions with others. >

[Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2]

2008-08-18 Thread bob gailer
Forwarding to the list. Please always reply to the list. -- Bob Gailer Chapel Hill NC 919-636-4239 When we take the time to be aware of our feelings and needs we have more satisfying interatctions with others. Nonviolent Communication provides tools for this awareness. As a coach and train

[Tutor] How to use urllib2.https_open with SSL support in Windows XP for python 2.5.2

2008-08-18 Thread xbmuncher
I wanted to use the urllib2.https_open() but it said the module did not exist. The manual says I need SSL support installed. I've done some searching.. but I haven't been able to find an official implementation of SSL support for python 2.5 for windows. If its required for urllib2 I assume its par