Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/oz123/peewee-session
- Owner: oz123
- Created: 2018-02-26T14:06:49.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-06T05:14:20.000Z (about 5 years ago)
- Last Synced: 2024-10-11T11:19:57.946Z (3 months ago)
- Topics: bottlepy, peewee-orm, session-cookie, session-management, session-manager
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
- passlibUsing peewee-session
--------------------See the exmaple application.
Acknowledgments
---------------
This package is loosely based on https://github.com/devries/bottle-session,
which uses redis.