Python settings for cloud environments
Settings Vial is a Python package providing an abstraction to read settings from environment variables. Such settings are then available as regular Python variables, making it easily integrated with configuration mechanisms provided by framworks like Django or others.
This package uses pkgsettings, so it can be used in configuration chains.
On demand setting overrides (dynamic settings), with subtrees of alternative configurations, are also possible.
$ export MY_APP_TEST_VAR=42
>>> from settings_vial import Settings
>>> settings = Settings(env_prefix="MY_APP_")
>>> settings.load_env()
>>> settings.TEST_VAR
42
- Loads prefixed environment variables (json encoded)
- Dynamic settings support (loads keys from callable instead)
$ pip install settings_vial
$ make test
If you'd like to contribute, please follow this workflow:
- Fork this repository
- Clone your fork
- Create and test your changes
- Create a pull-request
- Wait for review and approval from the repository collaborators
Contributions are always welcome.
If you need help or have bug reports, please file an issue in our Issue Tracker.
This project uses SemVer 2 for versioning. For the versions available, see the tags on this repository.