Cascading, adaptive and auto-complete supported Python config module
Project description
Free software: BSD license
Documentation: https://cfg4py.readthedocs.io.
A python config module that:
Adaptive deployment environment (default, dev, test, production) support
Cascading configuration (central vs local) support
Auto-complete
Templates (logging, database, cache, message queue,…)
Environment variables macro support
Enable logging in one line
Built on top of yaml
Features
It’s common to see that you have different settings for development machine, test machine and production site. They share many common settings, but a few of them has to be different.
For example, developers should connect to local database server when performing unittest, and tester should connect to their own database server. All these servers should be deployed separately and no data should be messed up.
Cfg4Py has perfect solution supporting for this: adaptive deployment environment support.
Adaptive Deployment Environment Support
In any serious projects, your application may run at both development, testing and production site. Except for effort of copying similar settings here and there, sometimes we’ll mess up with development environment and production site. Once this happen, it could result in very serious consequence.
To solve this, Cfg4Py developed a mechanism, that you provide different sets for configurations: dev for development machine, test for testing environment and production for production site, and all common settings are put into a file called ‘defaults’.
cfg4py module knows which environment it’s running on by lookup environment variable __cfg4py_server_role__. It should be one of ‘DEV’, ‘TEST’ and ‘PRODUCTION’. If nothing found, it means setup is not finished, and Cfg4Py will refuse to work. If the environment is set, then Cfg4Py will read settings from defaults set, then apply update from either of ‘DEV’, ‘TEST’ and ‘PRODUCTION’ set, according to the environment the application is running on.
Cascading design
Assuming you have a bunch of severs for load-balance, which usually share same configurations. So you’d like put the configurations on a central repository, which could be a redis server or a relational database. Once you update configuration settings at central repository, you update configurations for all servers. But somehow for troubleshooting or maintenance purpose, you’d like some machines could have its own settings at a particular moment.
This is how Cfg4Py solves the problem:
Configure your application general settings at remote service, then implement a RemoteConfigFetcher (Cfg4Py has already implemented one, that read settings from redis), which pull configuration from remote serivce periodically.
Change the settings on local machine, after the period you’ve set, these changes are popluated to all machines.
Auto-complete
With other python config module, you have to remember all the configuration keys, and refer to each settings by something like cfg[“services”][“redis”][“host”] and etc. Keys are hard to rememb, prone to typo, and way too much tedious.
When cfg4py load raw settigns from yaml file, it’ll compile all the settings into a Python class, then Cfg4Py let you access your settings by attributes. Compares the two ways to access configure item:
vs:
Apparently the latter is the better.
And, if you trigger a build against your configurations, it’ll generate a python class file. After you import this file (named ‘cfg4py_auto_gen.py’) into your project, then you can enjoy auto-complete!
Templates
It’s hard to remember how to configure log, database, cache and etc, so cfg4py provide templates.
Just run cfg4py scaffold, follow the tips then you’re done.
Environment variables macro
The best way to keep secret, is never share them. If you put account/password files, and these files may be leak to the public. For example, push to github by accident.
With cfg4py, you can set these secret as environment variables, then use marco in config files. For example, if you have the following in defaults.yaml (any other files will do too): .. code-block::text
- postgres:
dsn: postgres://{postgres_account}:{postgres_password}@localhost
then cfg4py will lookup postgres_account, postgres_password from environment variables and make replacement.
Enable logging with one line
with one line, you can enable file-rotating logging:
Apply configuration change on-the-fly
Cfg4Py provides mechanism to automatically apply configuration changes without restart your application. For local files configuration change, it may take effect immediately. For remote config change, it take effect up to refresh_interval settings.
On top of yaml
The raw config format is backed by yaml, with macro enhancement. YAML is the best for configurations.
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2020-04-06)
First release on PyPI.
0.5.0 (2020-04-30)
add command hint, set_server_role
export envar
add pip source, conda source
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.