mirror of
https://github.com/Steffo99/cfig.git
synced 2024-12-22 14:14:22 +00:00
Compare commits
4 commits
50be794c67
...
b44fdbc857
Author | SHA1 | Date | |
---|---|---|---|
|
b44fdbc857 | ||
dc5779f1bc | |||
eaa3aad5e7 | |||
|
16080bc19a |
4 changed files with 11 additions and 31 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
uses: actions/setup-python@v3
|
||||
|
||||
- name: "🔨 Setup Poetry"
|
||||
uses: abatilo/actions-poetry@v2.3.0
|
||||
uses: abatilo/actions-poetry@v2.4.0
|
||||
|
||||
- name: "🔨 Setup Poetry Python environment"
|
||||
uses: Steffo99/actions-poetry-deps@v0.2.5
|
||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -46,7 +46,7 @@ jobs:
|
|||
uses: actions/setup-python@v3
|
||||
|
||||
- name: "🔨 Setup Poetry"
|
||||
uses: abatilo/actions-poetry@v2.3.0
|
||||
uses: abatilo/actions-poetry@v2.4.0
|
||||
|
||||
- name: "🔨 Setup Poetry Python environment"
|
||||
id: pyenv
|
||||
|
|
BIN
.media/icon-128x128_round.png
Normal file
BIN
.media/icon-128x128_round.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.1 KiB |
38
README.md
38
README.md
|
@ -1,35 +1,15 @@
|
|||
<div align="center">
|
||||
|
||||
![](.media/icon-128x128_round.png)
|
||||
|
||||
# cfig
|
||||
|
||||
A configuration manager for Python
|
||||
Configuration helper for Python
|
||||
|
||||
\[ [**Example**](https://github.com/Steffo99/cfig/tree/main/cfig/sample) | [**Documentation**](https://cfig.readthedocs.io/) | [**PyPI**](https://pypi.org/project/cfig/) \]
|
||||
</div>
|
||||
|
||||
```python
|
||||
import cfig
|
||||
## Links
|
||||
|
||||
config = cfig.Configuration()
|
||||
[![PyPI](https://img.shields.io/pypi/v/cfig)](https://pypi.org/project/cfig)
|
||||
|
||||
@config.required()
|
||||
def SECRET_KEY(val: str) -> str:
|
||||
"""Secret string used to manage HTTP session tokens."""
|
||||
return val
|
||||
|
||||
if __name__ == "__main__":
|
||||
config.cli()
|
||||
```
|
||||
|
||||
```python
|
||||
from mypackage.mycfig import SECRET_KEY
|
||||
|
||||
print(f"My SECRET_KEY is: {SECRET_KEY}")
|
||||
```
|
||||
|
||||
```console
|
||||
$ python -m mypackage.mycfig
|
||||
===== Configuration =====
|
||||
|
||||
SECRET_KEY → Required, but not set.
|
||||
Secret string used to manage HTTP session tokens.
|
||||
|
||||
===== End =====
|
||||
```
|
||||
[![Documentation](https://img.shields.io/readthedocs/cfig)](https://cfig.readthedocs.io/en/latest/)
|
||||
|
|
Loading…
Reference in a new issue