Skip to content

Instantly share code, notes, and snippets.

@thedemz
thedemz / sessiontest.py
Last active January 13, 2018 19:16 — forked from alexcabrera/sessiontest.py
Example of using beaker sessions with bottle
import bottle
from beaker.middleware import SessionMiddleware
session_opts = {
'session.type': 'memory',
'session.cookie_expires': 300,
'session.auto': True
}
app = SessionMiddleware(bottle.app(), session_opts)