Skip to main content

Browser-aware multi-cookie flask session

Project description

Browser-aware flask session manager.

This module allows you to store any amount of data on session cookies without caring about browser-specific cookie limitations, by just registering session data shrink functions.

This module probably won’t play nicely with other cookies set on the same domain: session-cookie could be evicted at any time because other cookies and vice versa.

How it works

This module includes a simple browser cookie limit database, which is matched against flask request’s user agent and, on flask response, that information is used to serialize the session onto cookies.

This session implementation supports cookie signatures, multi-cookie session, and custom session shrinking logic which will be invoked when needed.

The session shrinking logic repeat this steps in order until session data fits into cookies:

  1. Registered shrinking functions, until they’re unable to reduce the cookie size.

  2. Unhandled keys are removed.

  3. Registered shrinking functions, now receiving True as parameter last.

  4. Remaining keys are removed.

Usage

This module works as a flask session interface, allowing to register session shrink functions which will be called once session does not fit on browser cookies.

import flask
import cookieman

app = flask.Flask(__name__)
app.session_interface = cookieman.CookieMan()
app.secret_key = 'my_app_secret_key'  # used for session cookie safety

@app.session_interface.register('a')
def shrink_a(data, last):
    '''
    Session property 'a' shrinking policy: remove last list item on key
    or just remove key.

    :param data: session data as dict
    :type data: Mapping[str, Any]
    :param last: wether is last iteration or not
    :type last: bool
    :returns: updated data (can be the same as received)
    :rtype: Mapping[str, Any]
    '''
    if len(data['a']) < 2:
        del data['a']
    else:
        data['a'].pop()
    return data

License

MIT (see LICENSE file).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cookieman-0.0.3.tar.gz (16.4 kB view details)

Uploaded Source

Built Distribution

cookieman-0.0.3-py2.py3-none-any.whl (23.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file cookieman-0.0.3.tar.gz.

File metadata

  • Download URL: cookieman-0.0.3.tar.gz
  • Upload date:
  • Size: 16.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for cookieman-0.0.3.tar.gz
Algorithm Hash digest
SHA256 677fdf8430537bd40dda4b28af721c0ad652a7090433f83c29231caa063f8e8b
MD5 724db24840c18280c38f6b02451ef91d
BLAKE2b-256 b4865662528c72d2a4ce20034c82d03a07a6a6ca1a474de4e84b554290d2aa94

See more details on using hashes here.

File details

Details for the file cookieman-0.0.3-py2.py3-none-any.whl.

File metadata

  • Download URL: cookieman-0.0.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 23.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.0

File hashes

Hashes for cookieman-0.0.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4f8f67130b9af2e8e979c2fea03f9b513f7482084480650dcbfb7c07da68bc29
MD5 bbe606cf2c737adac060d3bb048a540f
BLAKE2b-256 ccf95e16054ba01d87f6cf6cabc52224aa37bc71ae678409fb262e314f44185a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page