Python 2.7-https-cookielib-ssl

208 Views Asked by At

I am trying to install opener that supporting https and cookielib and have wrote a CookieJar and HTTPSHandler.But I don't know how to build opener with CookieJar and HTTPSHandler.

here:

class HTTPSConnectionV3(httplib.HTTPSConnection):

    def __init__(self,*args,**kwargs):
        httplib.HTTPSConnection.__init__(self,*args,**kwargs)

    def connect(self):
        sock= socket.create_connection((self.host,self.port),self.timeout)
        if self._tunnel_host:
            self.sock= sock
            self._tunnel()
        try:
            self.sock= ssl.wrap_socket(sock,self.key_file,self.cert_file,ssl_version=ssl.PROTOCOL_SSLv3)
        except ssl.SSLError, e:
            print("Trying  SSLv3.")
            self.sock= ssl.wrap_socket(sock,self.key_file,self.cert_file,ssl_version=ssl.PROTOCOL_SSLv23)


class HTTPSHandlerV3(urllib2.HTTPSHandler):

    def https_open(self,req):
        return self.do_open(HTTPSConnectionV3,req)

cj = cookielib.CookieJar();
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj));
urllib2.install_opener(urllib2.build_opener(HTTPSHandlerV3()))

Thank you.

0

There are 0 best solutions below