1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
c385e17d45 🤖 Bumped version to 0.1.12
All checks were successful
Package Python / Package (push) Successful in 24s
Test Python / Test (push) Successful in 22s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
2024-07-23 00:47:56 +02:00
499a44ca88 🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
2024-07-23 00:47:48 +02:00
3 changed files with 5 additions and 5 deletions

View File

@ -10,13 +10,13 @@ Usage:
```python
import secret_loader
secrets = secret_loader.SecretLoader(env_key_prefix = 'MYAPP')
secrets = secret_loader.SecretLoader(env_key_prefix='MYAPP')
db_username = secrets.load_or_fail('DATABASE_USERNAME')
db_password = secrets.load_or_fail('DATABASE_PASSWORD')
```
Secret loading order:
0. Hardcoded values. **This is purely for debugging, prototyping, and for

View File

@ -1 +1 @@
__version__ = '0.1.11'
__version__ = '0.1.12'

View File

@ -19,13 +19,13 @@ Usage:
```python
import secret_loader
secrets = secret_loader.SecretLoader(env_key_prefix = 'MYAPP')
secrets = secret_loader.SecretLoader(env_key_prefix='MYAPP')
db_username = secrets.load_or_fail('DATABASE_USERNAME')
db_password = secrets.load_or_fail('DATABASE_PASSWORD')
```
Secret loading order:
0. Hardcoded values. **This is purely for debugging, prototyping, and for