Skip to main content

Bottle plugin beaker, WSGI middleware for sessions and caching

Project description

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)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bottle-beaker-0.1.3.tar.gz (2.8 kB view details)

Uploaded Source

File details

Details for the file bottle-beaker-0.1.3.tar.gz.

File metadata

File hashes

Hashes for bottle-beaker-0.1.3.tar.gz
Algorithm Hash digest
SHA256 36aec120bab18ff902b23ae34fc593a125cb56b4182e5f1205f1ff628d2694aa
MD5 36437243b5a66596fe3a07f6e3e2d799
BLAKE2b-256 4462f03fab8674fd7d256acd1d1cb1f15ae29e4134f6ec245b675834e62505ab

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page