diego-treitos / bottle-beaker

Bottle plugin to session and caching library with WSGI Middleware

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bottle-beaker

Bottle plugin to session and caching library with WSGI Middleware

Example

import bottle
from bottle.ext import beaker

session_opts = {
    'session.type': 'file',
    'session.cookie_expires': 300,
    'session.data_dir': './data',
    'session.auto': True
}

app = beaker.middleware.SessionMiddleware(bottle.app(), session_opts)

@bottle.route('/test')
def test():
    s = bottle.request.environ.get('beaker.session')
    s['test'] = s.get('test',0) + 1
    s.save()
    return 'Test counter: %d' % s['test']

bottle.run(app=app)

About

Bottle plugin to session and caching library with WSGI Middleware

License:MIT License


Languages

Language:Python 100.0%