On Sep 25, 6:17 pm, Larry Bates <[EMAIL PROTECTED]> wrote:
> Johny wrote:
> > If I need to log in to a site using https protocol must I use
> > certification file and key file?
> > The class HTTPSConnection syntax is
> > class HTTPSConnection( host[, port, key_file, cert_file])
>
> > and I do not k
Johny wrote:
> If I need to log in to a site using https protocol must I use
> certification file and key file?
> The class HTTPSConnection syntax is
> class HTTPSConnection( host[, port, key_file, cert_file])
>
> and I do not know if it is nescessary or not.
> Thanks for help.
> L.
>
Depends on
If I need to log in to a site using https protocol must I use
certification file and key file?
The class HTTPSConnection syntax is
class HTTPSConnection( host[, port, key_file, cert_file])
and I do not know if it is nescessary or not.
Thanks for help.
L.
--
http://mail.python.org/mailman/listinf
Hi ,
I want to send HTTPs put request to the server .Can any one help me how
to do that .
I am using this code
import httplib
from group import *
class HTTPS:
def __init__(self,ip,port=443):
self.ip=ip
self.port=port
self.conn = httpl