Skip to main content

Redis-backed config for Flask applications

Project description

http://img.shields.io/pypi/v/Flask-RedisConfig.png

Redis-backed config for Flask applications based on the disqus/durabledict library

Usage

from flask import Flask
from flask.ext.redisconfig import RedisConfig

app = Flask(__name__)
config = RedisConfig('app:config')
config.init_app(app)

Command Line Interface

A CLI utility is provided for setting or reviewing config values easily.

config.cli()
Flask-RedisConfig
> help

Documented commands (type help <topic>):
========================================
exit  get  help  list  set  set_bool  set_int

> set SECRET_KEY oo5thuj4kaem2Pai0iviefahkaShah5iemae8Aev
> get SECRET_KEY
SECRET_KEY = 'oo5thuj4kaem2Pai0iviefahkaShah5iemae8Aev'
> set_bool PRESERVE_CONTEXT_ON_EXCEPTION False
> set_int SQLALCHEMY_POOL_SIZE 100
> list
PRESERVE_CONTEXT_ON_EXCEPTION = False
SECRET_KEY = 'oo5thuj4kaem2Pai0iviefahkaShah5iemae8Aev'
SQLALCHEMY_POOL_SIZE = 100
>

Example

$ python example.py config
$ python example.py

License

http://marksteve.mit-license.org

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

Flask-RedisConfig-0.3.0.tar.gz (2.5 kB view hashes)

Uploaded Source

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