How to use cookielib with httplib in python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T18:16:40Z http://stackoverflow.com/feeds/question/1016765 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1016765/how-to-use-cookielib-with-httplib-in-python 0 How to use cookielib with httplib in python? alrashedf 2009-06-19T07:32:11Z 2009-06-28T10:32:36Z <p>In python, I'm using httplib because it "keep-alive" the http connection (as oppose to urllib(2)). Now, I want to use cookielib with httplib but they seem to hate each other!! (no way to interface them together). </p> <p>Does anyone know of a solution to that problem?</p> http://stackoverflow.com/questions/1016765/how-to-use-cookielib-with-httplib-in-python/1016898#1016898 1 Answer by jitter for How to use cookielib with httplib in python? jitter 2009-06-19T08:26:38Z 2009-06-19T08:26:38Z <p><a href="http://linux.duke.edu/projects/urlgrabber/help/urlgrabber.keepalive.html" rel="nofollow">HTTP handler for urllib2 that supports keep-alive</a></p> http://stackoverflow.com/questions/1016765/how-to-use-cookielib-with-httplib-in-python/1053602#1053602 0 Answer by Serge Broslavsky for How to use cookielib with httplib in python? Serge Broslavsky 2009-06-27T20:51:39Z 2009-06-28T10:32:36Z <p>HACK ALERT! :)</p> <p>I'd go other suggested way, but I've done a hack (done for different reasons though), which does create an interface between httplib and cookielib.</p> <p>What I did was creating a fake HTTPRequest with minimal required set of methods, so that CookieJar would recognize it and process cookies as needed. I've used that fake request object, setting all the data needed for cookielib.</p> <p>Here is the code of the class:</p> <pre><code>class HTTPRequest( object ): """ Data container for HTTP request (used for cookie processing). """ def __init__( self, host, url, headers={} ): self._host = host self._url = url self._headers = {} for key, value in headers.items(): self.add_header(key, value) def has_header( self, name ): return name in self._headers def add_header( self, key, val ): self._headers[key.capitalize()] = val def add_unredirected_header(self, key, val): self._headers[key.capitalize()] = val def is_unverifiable( self ): return True def get_type( self ): # TODO: implement other protocols support return 'https' def get_full_url( self ): # TODO: implement other protocols support return 'https://' + self._host[0] + ":" + str(self._host[1]) + self._url def get_header( self, header_name, default=None ): return self._headers.get( header_name, default ) def get_host( self ): return self._host[0] get_origin_req_host = get_host def get_headers( self ): return self._headers </code></pre> <p>Please note, the class has support for HTTPS protocol only (all I needed at the moment).</p> <p>The code, which used this class was (please note another hack to make response compatible with cookielib):</p> <pre><code>cookies = CookieJar() headers = { # headers needed } # construct fake request request = HTTPRequest( host, request_url, headers ) # add cookies to fake request cookies.add_cookie_header(request) # issue an HTTP request using cookies and headers from fake request connection.request(type, request_url, body, request.get_headers()) response = server_connection.getresponse() if response.status == httplib.OK: # HACK: pretend we're urllib2 response response.info = lambda : response.msg # read and store cookies from response cookies.extract_cookies(response, request) # process response... </code></pre>