mirror of
https://github.com/Steffo99/cfig.git
synced 2024-11-21 07:24:21 +00:00
Configuration helper for Python
3454c30c15
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.1.3 to 7.2.2. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/7.1.3...7.2.2) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github | ||
.idea | ||
.vscode | ||
cfig | ||
docs | ||
.gitignore | ||
.readthedocs.yml | ||
cfig.iml | ||
LICENSE.txt | ||
poetry.lock | ||
pyproject.toml | ||
README.md |
cfig
A configuration manager for Python
[**Example**](https://github.com/Steffo99/cfig/tree/main/cfig/sample) | [**Documentation**](https://cfig.readthedocs.io/) | [**PyPI**](https://pypi.org/project/cfig/)
import cfig
config = cfig.Configuration()
@config.required()
def SECRET_KEY(val: str) -> str:
"""Secret string used to manage HTTP session tokens."""
return val
if __name__ == "__main__":
config.cli()
from mypackage.mycfig import SECRET_KEY
print(f"My SECRET_KEY is: {SECRET_KEY}")
$ python -m mypackage.mycfig
===== Configuration =====
SECRET_KEY → Required, but not set.
Secret string used to manage HTTP session tokens.
===== End =====