class http.cookiejar.FileCookieJar(filename, delayload=None, policy=None)
policy is an object implementing the CookiePolicy
interface. For the other arguments, see the documentation for the corresponding attributes.
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 FileCookieJar subclasses and co-operation with web browsers.
Please login to continue.