Easy configs for python projects
Project description
P-Conf
Easy use Configs for python projects. Allows loading the config files in the application directory (os specific). Once set the config can be used as a singleton across the project or pass around.
Locations for the config file
The following are the default locations that will be searched
~/.config/<appname>/config.(toml|json|ini|yaml)
<system config directory>/<appname>/config.(toml|json|ini|yaml)
Example code
The example code uses the following as the example configuration file
# My config.toml file
foo = 1
[bar]
a = 2
Using inside of a single script
from pi_conf import load_config
cfg = load_config("ourappname")
print(cfg.foo) # 1
print(cfg.bar.a) # 2
Using inside of applications
The following is the preferred way of using the pi-conf module.
# __init__.py
from pi_conf import load_config
cfg = load_config("ourappname") ## Loads the config from the application <appname> directory
Using the config in files
Once it the config has been set you can use it from any file doing either of the following methods.
- Option 1
from ourappname import cfg ## Import cfg from what we set in __init__.py
print(cfg.foo) # 1
- Option 2
from pi_conf import load_config ## Just load it again
cfg = load_config("ourappname")
print(cfg.foo) # 1
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
pi_conf-0.8.2.tar.gz
(10.4 kB
view details)
Built Distribution
pi_conf-0.8.2-py3-none-any.whl
(11.3 kB
view details)
File details
Details for the file pi_conf-0.8.2.tar.gz
.
File metadata
- Download URL: pi_conf-0.8.2.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.9 Darwin/23.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2ab2767c25a28a316372fb16ddbd38b786501f2bb0b5dd15c82696a2b0a014a |
|
MD5 | d959cf8d85bc8effbe3999616643ea0e |
|
BLAKE2b-256 | 1ea1a112e13104703f461f77dad266153837dd3fdb4c4cf938e8dda31ec254dc |
File details
Details for the file pi_conf-0.8.2-py3-none-any.whl
.
File metadata
- Download URL: pi_conf-0.8.2-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.9 Darwin/23.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f53fc4d2cbbf263b49c4317ead7d593ef3a7b6c1f01ebe5629fb9de9c56bc64f |
|
MD5 | 28467edba21ca53d05fc04fd204096b4 |
|
BLAKE2b-256 | e9b039a340074822542ce03a80242dc1a16cb008d5dd15ed986ba2a0d28b90e2 |