cookielib模块整理
时间:2010-09-26 来源:libin1201119
The cookielib module defines classes for automatic handling of HTTP cookies. It is useful for accessing web sites that require small pieces of data - cookies - to be set on the client machine by an HTTP response from a web server, and then returned to the server in later HTTP requests.
The following classes are provided:
class CookieJar( | policy=None) |
The CookieJar class stores HTTP cookies. It extracts cookies from HTTP requests, and returns them in HTTP responses. CookieJar instances automatically expire contained cookies when necessary. Subclasses are also responsible for storing and retrieving cookies from a file or database.
class FileCookieJar( | filename, delayload=None, policy=None) |
A CookieJar which can load cookies from, and perhaps save cookies to, a file on disk. Cookies are NOT loaded from the named file until either the load() or revert() method is called. Subclasses of this class are documented in section 18.22.2.
ck = cookielib.CookieJar() 通过 这个就可 以实现 请求带过去的COOKIE与发送回来的COOKIE值了。如何来获取到COOKIE呢?opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(ck))