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.5.tar.gz
(11.6 kB
view details)
Built Distribution
pi_conf-0.8.5-py3-none-any.whl
(13.8 kB
view details)
File details
Details for the file pi_conf-0.8.5.tar.gz
.
File metadata
- Download URL: pi_conf-0.8.5.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 | c2178a3287cd8545deb1e6104075335ccd5d87e521ba2877f14c0cf5831cf959 |
|
MD5 | 72e4da91ab5fcb06be344562a6f02707 |
|
BLAKE2b-256 | 4bd94e5243682f99a48c5271f46c1ab288601f9f40503da45ddc818c3c6efbc3 |
File details
Details for the file pi_conf-0.8.5-py3-none-any.whl
.
File metadata
- Download URL: pi_conf-0.8.5-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 | 1b9d35cd80625a0369dcec6ae86959fc99ee4f448b17636550edb11e18b3d61e |
|
MD5 | 82552bdf9af8b8acaa9a106c7dca1703 |
|
BLAKE2b-256 | c6e44155cc5854502e86aaa7a3632fcf4427ac00061b12524a598162d92c521d |