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.3.tar.gz
(11.4 kB
view details)
Built Distribution
pi_conf-0.8.3-py3-none-any.whl
(13.5 kB
view details)
File details
Details for the file pi_conf-0.8.3.tar.gz
.
File metadata
- Download URL: pi_conf-0.8.3.tar.gz
- Upload date:
- Size: 11.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 | 9368cc535f46d74913c675fd51fd5b4f983b0fadc831e4e99fdf749c255f7df2 |
|
MD5 | 6d776cd0bfc90be508f782741b2d2987 |
|
BLAKE2b-256 | 33260498085b8c541c1d27bf5a8580392356ea958bd57bc0b340178d1882960a |
File details
Details for the file pi_conf-0.8.3-py3-none-any.whl
.
File metadata
- Download URL: pi_conf-0.8.3-py3-none-any.whl
- Upload date:
- Size: 13.5 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 | 94d21b53afa4df9ee0f07e1d28d9d34ede57f63ba88057d6064a5901c2aa2bca |
|
MD5 | c27f9475ef651a2f2334116c254f2722 |
|
BLAKE2b-256 | 251d35050d900b9514bb481933d1df21c13a0d2903aacdab64c0ca1f6d1f1e00 |