CookieJarDB
Superclasses: CookieJar
, Object
Implemented Interfaces: SessionFeature
- Constructors:
CookieJarDB(**properties)
new(filename:str, read_only:bool) -> Soup.CookieJar
Constructors
- class CookieJarDB
- classmethod new(filename: str, read_only: bool) → CookieJar
Creates a
SoupCookieJarDB
.filename
will be read in at startup to create an initial set of cookies. Ifread_only
isFalse
, then the non-session cookies will be written tofilename
when thechanged
signal is emitted from the jar. (Ifread_only
isTrue
, then the cookie jar will only be used for this session, and changes made to it will be lost when the jar is destroyed.)- Parameters:
filename – the filename to read to/write from, or
None
read_only –
True
iffilename
is read-only