Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oz123/peewee-session

A bottle plugin to manage and store sessions using Peewee ORM
https://github.com/oz123/peewee-session

bottlepy peewee-orm session-cookie session-management session-manager

Last synced: 21 days ago
JSON representation

A bottle plugin to manage and store sessions using Peewee ORM

Awesome Lists containing this project

README

        

Bottle Sessions with Peewee
===========================

`peewee_session` is a session manager for the Bottle microframework that uses a
cookie to maintain your web session and stores a hash associated with that
cookie using peewee supported database. It is designed as a simple Bottle
plugin.

Installation
------------
Install using either pip:

$ pip install peewee-session

Requirements
------------

- peewee >= 3.1
- passlib

Using peewee-session
--------------------

See the exmaple application.

Acknowledgments
---------------
This package is loosely based on https://github.com/devries/bottle-session,
which uses redis.