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.4.tar.gz
(11.6 kB
view details)
Built Distribution
pi_conf-0.8.4-py3-none-any.whl
(13.8 kB
view details)
File details
Details for the file pi_conf-0.8.4.tar.gz
.
File metadata
- Download URL: pi_conf-0.8.4.tar.gz
- Upload date:
- Size: 11.6 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 | 46c2c53c90402755b64cae681dabe9b4236a02aa20a92742916aeb264ce1bfab |
|
MD5 | 92d57a35c8b5f5a2e5d458546ce6599b |
|
BLAKE2b-256 | d64c0ce49e5777f149fc48c21aa9ba522cbf8ead2298437de61dd2a6501884b9 |
File details
Details for the file pi_conf-0.8.4-py3-none-any.whl
.
File metadata
- Download URL: pi_conf-0.8.4-py3-none-any.whl
- Upload date:
- Size: 13.8 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 | 9cf6ca3078d1f84e1f5b63f0532c8c2ff788a3e134baa87e0530e46f15d89399 |
|
MD5 | fd17c7963018c4f7d8d6a3bf41619784 |
|
BLAKE2b-256 | e543cad4befdd2c2904a5336161477905a53efb698f913f25bfe08e14108ee60 |