Class SessionBase
Base class for all Session classes.
Declaration
class SessionBase
source linkDocumentation
Methods
Overrides
This method is overriden in:
▶ def create(self) Create a new session instance. Guaranteed to create a new object with a unique key and will have saved the result once (with empty data) before the method returns.
Overrides
This method is overriden in:
▶ def cycle_key(self) Create a new session key, while retaining the current session data.
Overrides
This method is overriden in:
▷ def decode(self, session_data) ▶ def delete(self, session_key=None) Delete the session data under this key. If the key is None, use the current session key value.
Overrides
This method is overriden in:
▷ def encode(self, session_dict) Return the given session dictionary serialized and encoded as a string.
▶ def exists(self, session_key) Return True if the given session_key already exists.
Overrides
This method is overriden in:
▶ def flush(self) Remove the current session data from the database and regenerate the key.
Overrides
This method is overriden in:
▷ def get(self, key, default=None) closes, and ``False`` if there's an expiry date. Use
``get_expiry_date()`` or ``get_expiry_age()`` to find the actual expiry
date/age, if there is one.
▶ def get_expiry_age(self, **kwargs) Get the number of seconds until the session expires.
Optionally, this function accepts `modification` and `expiry` keyword
arguments specifying the modification and expiry of the session.
▶ def get_expiry_date(self, **kwargs) Get session the expiry date (as a datetime object).
Optionally, this function accepts `modification` and `expiry` keyword
arguments specifying the modification and expiry of the session.
▷ def is_empty(self) Return True when there is no session_key and the session is empty.
@property
def key_salt(self)
▶ def load(self) Load the session data and return a dictionary.
Overrides
This method is overriden in:
▷ def pop(self, key, default=__not_given) ▶ def save(self, must_create=False) Save the session data. If 'must_create' is True, create a new session object (or raise CreateError). Otherwise, only update an existing object and don't create one (raise UpdateError if needed).
Overrides
This method is overriden in:
▶ def set_expiry(self, value) Set a custom expiration for the session. ``value`` can be an integer, a Python ``datetime`` or ``timedelta`` object or ``None``.
If ``value`` is an integer, the session will expire after that many
seconds of inactivity. If set to ``0`` then the session will expire on
browser close.
If ``value`` is a ``datetime`` or ``timedelta`` object, the session
will expire at that specific future time.
If ``value`` is ``None``, the session uses the global session expiry
policy.
Class methods
▶ def clear_expired(cls) @classmethod Remove expired sessions from the session store.
@classmethod
def clear_expired(cls)
If this operation isn't possible on a given backend, it should raise
NotImplementedError. If it isn't necessary, because the backend has
a built-in expiration mechanism, it should be a no-op.
Overrides
This method is overriden in:
Subclasses
Reexports