Metadata-Version: 1.0
Name: dbstore
Version: 0.3
Summary: Database storage for flup session middleware.
Home-page: http://lukearno.com/projects/dbstore/
Author: Luke Arno
Author-email: luke.arno@gmail.com
License: LGPL2
Description: This distribution provides database backed storage using any PEP 249
        compliant database package in conjunction with flup.middleware.session.
        Storage and decorators for supplying WSGI apps with MySQLdb or psycopg2
        backed sessions are provided. Others backends are easy to hook up.
        
        @mysql_sessionizer(user='foo', passwd='bar', db='baz', host='localhost')
        def some_wsgi_app(environ, start_response):
        ...
        
        You will need a database with a sessions table:
        
        CREATE TABLE sessions (
        id VARCHAR(32) NOT NULL,
        touched  FLOAT,
        pickle LONGTEXT,
        primary key (id));
        
        
Keywords: wsgi database mysql sessions flup
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
