class documentation

Stores the session data on disk using shelve package. This is an example of how to persist data on disk.

Method read Read the data from disk using shelve package.
Method save Save the data on disk using shelve package.
Class Variable _lock Undocumented
Property _location Undocumented

Inherited from BaseSessionStore:

Method __init__ Undocumented
Instance Variable _path Undocumented
Instance Variable _session_id Undocumented
Property _logger Undocumented
def read(self) -> Dict[str, Any]: (source)

Read the data from disk using shelve package.

def save(self): (source)

Save the data on disk using shelve package.

Undocumented

Undocumented