2022-04-19 02:16:23 +00:00
|
|
|
# cfig
|
|
|
|
|
|
|
|
A configuration manager for Python
|
|
|
|
|
2022-04-19 02:19:23 +00:00
|
|
|
\[ [**Documentation**](https://cfig.readthedocs.io/) | [**PyPI**](https://pypi.org/project/cfig/) \]
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
2022-04-19 02:16:23 +00:00
|
|
|
```python
|
|
|
|
import cfig
|
|
|
|
|
|
|
|
config = cfig.Configuration()
|
|
|
|
|
|
|
|
@config.required()
|
|
|
|
def SECRET_KEY(val: str) -> str:
|
|
|
|
"""Secret string used to manage tokens."""
|
|
|
|
return val
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
config.cli()
|
|
|
|
```
|
|
|
|
|
2022-04-19 02:18:05 +00:00
|
|
|
```python
|
2022-04-19 02:19:23 +00:00
|
|
|
from mypackage.mycfig import SECRET_KEY
|
2022-04-19 02:18:05 +00:00
|
|
|
|
2022-04-19 02:18:22 +00:00
|
|
|
print(f"My SECRET_KEY is: {SECRET_KEY}")
|
2022-04-19 02:18:05 +00:00
|
|
|
```
|
|
|
|
|
2022-04-19 02:16:23 +00:00
|
|
|
```console
|
2022-04-19 02:19:23 +00:00
|
|
|
$ python -m mypackage.mycfig
|
2022-04-19 02:16:23 +00:00
|
|
|
=== Configuration ===
|
|
|
|
|
|
|
|
SECRET_KEY → Required, but not set.
|
|
|
|
Secret string used to manage HTTP session tokens.
|
|
|
|
```
|