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.1.tar.gz
(10.8 kB
view details)
Built Distribution
pi_conf-0.8.2.1-py3-none-any.whl
(13.0 kB
view details)
File details
Details for the file pi_conf-0.8.2.1.tar.gz
.
File metadata
- Download URL: pi_conf-0.8.2.1.tar.gz
- Upload date:
- Size: 10.8 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 | fedf50d33022dabbc3e1e586269882391cf5cb7ebe11897b8a77cf2bbcdd8c78 |
|
MD5 | b149f2cba0b6f1576d5306085da3210a |
|
BLAKE2b-256 | 6219dd01e8a1442ca89c6a414cbf79d2f4324c7591a977e05df371240797a128 |
File details
Details for the file pi_conf-0.8.2.1-py3-none-any.whl
.
File metadata
- Download URL: pi_conf-0.8.2.1-py3-none-any.whl
- Upload date:
- Size: 13.0 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 | 87c8ab21feeb601c9ba75fd33b127fe62d06b39420967baba501030e28d64041 |
|
MD5 | 07d1a6578083902f4fa19597becbc75f |
|
BLAKE2b-256 | 774ab2d912ccee50eb3dba290a022bc34460acc49c7b6a8e59bdaabf117f6225 |