Store variables in database and update them at runtime
Project description
Flask-WaffleConf
WaffleConf is a Flask extension that enables storage of configuration variables in the database as well as runtime modification of said variables.
Released under GPLv2+ license.
Installation
$ pip install Flask-WaffleConf
Configuration
Simple usage of the extension requires the following configuration variables (e.g., in your application’s config.py):
WAFFLE_CONFS: used for specifying the configuration variables that are going to be stored in the database. It has the following structure:
WAFFLE_CONFS = {
'MAX_FILESIZE': {
'desc': 'Max upload filesize (in bytes)',
'default': 1000
},
'SITENAME': {
'desc': 'Name of the site appearing in the header',
'default': 'Waffle'
}
}
Check the documentation for advanced usage
Example Application using SQLAlchemy as ORM
from flask import Flask, current_app
from flask_waffleconf import WaffleConf, AlchemyWaffleStore, \
WaffleMixin
from flask_sqlalchemy import SQLAlchemy
app = Flask(__name__)
app.config['WAFFLE_CONFS'] = {
'MAX_FILESIZE': {
'desc': 'Max upload filesize (in bytes)',
'default': 1000
},
'SITENAME': {
'desc': 'Name of the site appearing in the header',
'default': 'Waffle'
}
}
# Define your database
# db = ...
# Define model
class ConfModel(db.Model, WaffleMixin):
__tablename__ = 'confs'
id = db.Column(db.Integer, primary_key=True)
key = db.Column(db.String(255), unique=True)
value = db.Column(db.Text)
# Create database tables
# ...
# Initialize WaffleConf
configstore = AlchemyWaffleStore(db=db, model=ConfModel)
waffle = WaffleConf(app, configstore)
@app.route('/')
def index():
"""Display content of configured variable 'SITENAME'."""
state = current_app.extensions['waffleconf']
parsed = state.parse_conf()
# {'MAX_FILESIZE': 1000, 'SITENAME': 'Waffle'}
return parsed['SITENAME']
Multiprocess deployments
Since version 0.2.0, multiprocess deployments are supported. Check the documentation for more information.
Documentation
Documentation is present in the docs/ directory and also online at https://flask-waffleconf.readthedocs.org. In order to build the documentation from source (you will need Sphinx), run the following command in the docs/ directory:
$ make html
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
Built Distribution
File details
Details for the file Flask-WaffleConf-0.3.1.tar.gz
.
File metadata
- Download URL: Flask-WaffleConf-0.3.1.tar.gz
- Upload date:
- Size: 23.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d318b9462efa7dec7824bf8bf1336d590085d3dee1e7aa15023e00cdbd718090 |
|
MD5 | d9a4c2006b15188b29c46387a50e6e5b |
|
BLAKE2b-256 | 9e6a1386676d61c6687d1974d174184279cced3a7da1dcfc687592af78dc1eaf |
File details
Details for the file Flask_WaffleConf-0.3.1-py2.py3-none-any.whl
.
File metadata
- Download URL: Flask_WaffleConf-0.3.1-py2.py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee4f1fc5edf75f8a2639eb15e6f6ae135e1a0cd58b028b65d08fab13b4a29a1d |
|
MD5 | 598b9af0d04efef62474eac84e8b2e29 |
|
BLAKE2b-256 | 0e5eb1e5cce48c16071579e269438d6a3c6c4a7859b9b6e69627f0cf455f93ad |