Small lib to manage settings as object for Flask/Bottle/custom apps
Project description
Just a code I use in a few Bottle/Flask-based and a few other projects.
from just_another_settings import EnvSelector, EnvField
class BaseSettings(object):
DEBUG = True
# EnvField looks for the variable and fetches it, otherwise use value from default parameter
MONGOLAB_URL = EnvField('MONGO_URL')
HOST = EnvField('HOST', default='localhost')
class ProdSettings(BaseSettings):
DEBUG = False
HOST = 'example.com'
class DevSettings(BaseSettings):
pass
# env selector - selects settings base on env values
env_selector = EnvSelector('APP_MODE', 'dev', dev=DevSettings(), prod=ProdSettings())
# value selector - selects settings base on passed(to the `choose` method) value
by_value_selector = ValueSelector(dev=DevSettings(), prod=ProdSettings())
# somewhere in main file:
# env
application.config.from_object(env_selector.choose())
# by value
application.config.from_object(by_value_selector.choose('dev'))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file just-another-settings-1.0.tar.gz
.
File metadata
- Download URL: just-another-settings-1.0.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f60572f43f2130a53e93e1eda4da03f5fd528407502ac77ef4e352c6bf4d4af2 |
|
MD5 | 4ef879653ce0a446367f3216f2f43cec |
|
BLAKE2b-256 | 59cce6ac48a5612de702c65b60b03e447d689f1fa729b75e0ad0c22eb78a38a4 |