Python module for session management

Is there any equivalent session management module like Perl CGI :: Session or Apache :: Session? (I know that most python web frameworks have their own implementations, but I'm looking for a separate module that can be used with any python application.)

+4
source share
2 answers

I think you can use Beaker, which is a popular library for this. documentation

+6
source

Werkzeug is a WSGI library that is somewhat equivalent to the Perl CGI module in the Python world (almost no one uses CGI in Python) and it has a basic session and signed cookie support.

Werkzeug powers Flask , a minimalist web structure that I often use for quick and dirty stuff.

+3
source

All Articles