Load secrets from a configuration file, generating them if needed.
Project description
Read and write secrets from a configuration file.
Install from PyPI.
pip install shrebx
I originally made this for secret settings in a Django project, so here’s the example from that.
First, load the secrets.
import os
from shrebx import shrebx
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
SECRETS = shrebx(os.path.join(BASE_DIR, '.secrets'),
manual_fields = ['DATABASE_PASSWORD'],
random_fields = ['SECRET_KEY'])
Then set them to things.
SECRET_KEY = SECRETS['SECRET_KEY']
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'dadaportal',
'USER': 'www-data',
'HOST': 'localhost',
'PASSWORD': SECRETS['DATABASE_PASSWORD'],
}
}
If you have a lot of secrets, consider using locals.
locals().update(shrebx(random_fields = ['THIS_PASSWORD', 'THAT_PASSWORD'],
manual_fields = ['EMAIL_ADDRESS' ))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
shrebx-0.0.1.tar.gz
(1.4 kB
view details)
File details
Details for the file shrebx-0.0.1.tar.gz.
File metadata
- Download URL: shrebx-0.0.1.tar.gz
- Upload date:
- Size: 1.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61739c07be6546695df2eaa2076ebc854a8c5b9e08818fbd74a0c5616a36136a
|
|
| MD5 |
a232c8f834f9cf4b920d901804a8c8f2
|
|
| BLAKE2b-256 |
34e0351cb95771860dffa2461ce64940ff2594aebbc0c34463c6244ffdff8460
|