Hasan D <[EMAIL PROTECTED]> wrote:
>
>I'm new on this httplib and urllib. Actually I dont know what should i use.
>
>I want to fill the form in a "https" page , and return the result . I
>write a test code but always gives errors. I cant find any good
>example about this on the net. What should I do about this ?
>
>import urlparse,urllib,httplib,string,htmllib,formatter
>
>#port="443"
>target="https://www.abc.com/";
>params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0})
>http=httplib.HTTP("https://www.abc.com/",443)

If you want https, you should use the HTTPS class.

  http = httplib.HTTPS("https://www.abc.com/",443)

Or, even better, the HTTPSConnection class.

  http://www.noah.org/python/https/
-- 
- Tim Roberts, [EMAIL PROTECTED]
  Providenza & Boekelheide, Inc.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to