<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>dbstore</name>
<shortdesc>Database storage for flup session middleware.</shortdesc>
<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));</description>
<homepage rdf:resource="http://lukearno.com/projects/dbstore/" />
<maintainer><foaf:Person><foaf:name>Luke Arno</foaf:name>
<foaf:mbox_sha1sum>a8b8f1425185bab21f3ed00d733e44672e503fff</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.3</revision></Version></release>
</Project></rdf:RDF>