Re: How to Retrieve Data from an HTTPS://URL

2006-01-06 Thread LordLaraby
You might be using ActiveState python on Windows? If so, you most likely do not have the SSL layer that's required to process HTTPS protocol queries. You should install 'standard' Python from python.org to get the SSL handling functionality. I understand that ActiveState can not distribute the SSL

Re: How to Retrieve Data from an HTTPS://URL

2006-01-06 Thread Fuzzyman
It certainly *should* work - have you tried with urllib2 ? I assume the page works when fetched with a browser ? You don't have any proxy settings do you (Python can pick up on these automatically) ? What error are you getting (or what value in data) ? All the best, Fuzzyman http://www.voidspac

Re: How to Retrieve Data from an HTTPS://URL

2006-01-05 Thread Peter Hansen
Harlin Seritt wrote: > I am trying to pull data from a web page at https://localhost/wps. > While this would work if the url was http://localhost/wps, it doesn't > work with 'https.' > > I can do this: > > import urllib > data = urllib.urlopen('http://localhost/wps').read() > > But not with http