Helps bring configuration, stored remotely on a ``Consul`` server, to your application
Project description
rconfig helps bring configuration, stored remotely on a Consul server, to your application.
Installation
Install the latest version with:
pip3 install -U python-rconfigFor command-line support, use the CLI option during installation:
pip3 install -U "python-rconfig[cli]"For command-line and yaml support:
pip3 install -U "python-rconfig[cli,yaml]"
Usage
First off all rconfig expects that you have the following key structure on the consul server:
<root-key> |____<common-config-key> | | | |___<some-env-key> | | |_____<key-value> | | |_____<key-value> | | | |___<another-env-key> | |_____<key-value> | |_____<key-value> |____<app-config-key> | |___<some-env-key> | |_____<key-value> | |_____<key-value> | |___<another-env-key> |_____<key-value> |_____<key-value>Here root key stands for the name of the project when some have multiple applications that grouped under some kind of common purpose (often when talk about microservices). Under common configuration key, you should store configurations that common to all your applications in the project, in this case, it’s much easier to change the config in one place than go to multiple.
Command-line Interface
CLI offers you an ability to load config from Consul (within a few ways) without a need of changing application code.
Usage: rconfig [OPTIONS] COMMAND [ARGS]... Options: -h, --host TEXT Host of a consul server [required] -a, --access TEXT Access key for a consul server [required] -p, --port INTEGER Port of consul server [default: 8500] -k, --key TEXT Consul key [required] --help Show this message and exit. Commands: export Print out bash command export for all found config list Show all config for given keysLet’s look at few examples.
<your-awesome-app> |____<prod> |___<LOG_LEVEL -> "WARNING"> |___<LOG_FILE_HANDLER -> 1>To load prod config of you-awesome-app, issue:
$ rconfig -h localhost -a access-key -k 'your-awesome-app/prod' list {'LOG_LEVEL': 'WARNING', 'LOG_FILE_HANDLER': 1}To export config to different formats, use:
Bash:
$ rconfig -h localhost -a access-key -k 'your-awesome-app/prod' export -f bash export LOG_LEVEL='WARNING' export LOG_FILE_HANDLER='1'$ rconfig -h localhost -a access-key -k 'your-awesome-app/prod' export -f bash:inline export LOG_LEVEL='WARNING' LOG_FILE_HANDLER='1'Yaml:
$ rconfig -h localhost -a access-key -k 'your-awesome-app/prod' export -f yaml LOG_LEVEL: WARNING LOG_FILE_HANDLER: 1Json:
$ rconfig -h localhost -a access-key -k 'your-awesome-app/prod' export -f json {"LOG_LEVEL": "WARNING", "LOG_FILE_HANDLER": 1}$ rconfig -h localhost -a access-key -k 'your-awesome-app/prod' export -f json:pretty { "LOG_LEVEL": "WARNING", "LOG_FILE_HANDLER": 1 }
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
Built Distribution
File details
Details for the file python_rconfig-20.2.7.tar.gz
.
File metadata
- Download URL: python_rconfig-20.2.7.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.8.0-45-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38df2a250c04b5b92062047185f9807b27ef7d726bcac6863375f6802d567dfe |
|
MD5 | 8a3f954a7ba75cb90f156d26cf7f1917 |
|
BLAKE2b-256 | 9527cafde97ea0a68e33d9d6103814de1edf0f761ccd32fb9da26c79b54824c5 |
File details
Details for the file python_rconfig-20.2.7-py3-none-any.whl
.
File metadata
- Download URL: python_rconfig-20.2.7-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.8.0-45-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8111fe37ab636de8423deb3b4456ba72536f57846076d4de72ae1af707ff966c |
|
MD5 | 37bc390a87467a8f84aff0fbd757f76c |
|
BLAKE2b-256 | ffd9a5fd8064e9bb932fcc4744aa5092c43f7228b3545f7ee6c91740dca3230e |