A simple json configuration file manager
Project description
Module for creating parameters, saving them and loading from JSON formatted file.
pip install conson
from .conson import Conson
Usage:
-
Conson(cfile="config.json", cfilepath=os.getcwd(), salt="ch4ng3M3pl3453"): You can set file name/extension and path to config file directory. By default, current working directory is used.
-
Instance call, parameters: Calling Conson instance will return all kwargs that has already been set by create method. Values modified with .veil method will be encrypted and presented in hex value. Parameters:
<instance>.file <instance>.file = <filename>, <cfilepath=os.getcwd()> <instance>.salt <instance>.salt = <your salt> -
.create(key, *value): Creates parameter in key=value pair. Accepts single value or list of values. Example:
settings = Conson() settings.create(key1, value1, value2, value3) settings.create(key2, [value1, value2, value3]) settings.create(key3, {"subkey1": "value1", "subkey2": value2, "subkey3": value3}) -
.dispose(key): Removes created parameter from instance.
-
.dump() Removes all created parameters. Useful in case when only one instance is invoked and multiple configuration files are being loaded - allows to prevent mixing parameters simply by dumping them out.
-
.veil(key, index="0", marker=""): Passes created value through Fernet SHA-256 encryption. We point the key and value index number. Secret key is based on system-related UUID, so decryption is meant to happen only on device the encryption has place. If you want to reach value in nested dictionary, you can use subkey OR it's subkey's index number. You can also pass marker char (or chars) to put as first and last char of returned value, it will help with identifying veiled strings (you can combine unveil with slicing). Example:
settings.veil("setting1", marker="$") settings.veil("setting3", 1) settings.veil("setting3", "key", "<>")Result print(settings()):
"setting1": "$674141414141426c65566a6c6123123330617a41416c6330307a3667794a41535965537733423sdvb347705f464a5648435a39596b586a45304b31506232646b645353355f2d4c4646623546fggf3395a6c4e38595f7358676269513d3d$" "setting3": "value1", "674141414141426c65566a6c6123123330617a41416c6330307a3667794a41535965537733423sdvb347705f464a5648435a39596b586a45304b31506232646b645353355f2d4c4646623546fggf3395a6c4e38595f7358676269513d3d" "setting3": {"key": "<674141414141426c65566a6c6123123330617a41416c6330307a3667794a41535965537733423sdvb347705f464a5648435a39596b586a45304b31506232646b645353355f2d4c4646623546fggf3395a6c4e38595f7358676269513d3d>"} -
.unveil(value): Allows to decrypt veiled(encrypted) values. Value must be already present in instance (by .create or .load). Example:
settings.unveil(settings()["setting1"]) settings.unveil(settings()["setting3"][1]) settings.unveil(settings()["setting3"]["key"]) -
.save(verbose=False): Saves all parameters created to file. Prints result of operation (success/failure) if verbose parameter has been given.
-
.load(verbose=False): Loads json formatted settings from file. Prints result of operation (success/failure) if verbose parameter has been given.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file conson-3.2.1.tar.gz.
File metadata
- Download URL: conson-3.2.1.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b53b72bfcfa5c3a48fd0fbb0f3c488696c4a73162741e667657ec0aa1ae1b82
|
|
| MD5 |
32ddd0358b0e0bec462be15a56bb74fb
|
|
| BLAKE2b-256 |
7949a942e4bf5858a60a172777d48761f3aab96fe53b7d04e510a4b43894f09e
|
File details
Details for the file conson-3.2.1-py3-none-any.whl.
File metadata
- Download URL: conson-3.2.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6898aff07738a0f36e538c097daca658d5f908e63c5f98d37e4bc065989cd032
|
|
| MD5 |
413904a5d2aea307d1c7fdc0d6e77bdc
|
|
| BLAKE2b-256 |
395376305386d228276a53a5eefd6a74e54d5b72f5d20a9e5fb894cd5681cde7
|