Skip to main content

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 set_config
cfg = set_config("ourappname")

print(cfg.foo) # 1
print(cfg.bar.a) # 2

Using inside of applications

The following is the preferred way of using the p-config module. We set it once in our __init__.py then use it whichever files need it. Since cfg is a singleton setting it multiple times is unnecessary and will cause it to load from the file again.

# __init__.py

from pi_conf import set_config
set_config("ourappname") ## Sets the config from the application <appname> directory
from pi_conf import cfg as cfg ## Allows the cfg to be importable from our app

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 cfg ## Import the cfg from p-config

print(cfg.foo) # 1

Project details


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.7.6.1.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

pi_conf-0.7.6.1-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file pi_conf-0.7.6.1.tar.gz.

File metadata

  • Download URL: pi_conf-0.7.6.1.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.0.0

File hashes

Hashes for pi_conf-0.7.6.1.tar.gz
Algorithm Hash digest
SHA256 bc493775bfcbb6ec255b26697fd5026ecab8b95537dcd480f22c11d10616908c
MD5 276c065b83035e5c4e899b50b4e609bd
BLAKE2b-256 e2fd00cb709a7134dbed83820ce89bddaa7eca357320b3b0e2c4701504c9d026

See more details on using hashes here.

File details

Details for the file pi_conf-0.7.6.1-py3-none-any.whl.

File metadata

  • Download URL: pi_conf-0.7.6.1-py3-none-any.whl
  • Upload date:
  • Size: 10.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.0.0

File hashes

Hashes for pi_conf-0.7.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 317ca4ad493c6fabdecf009e15d7532fff5b4934074bc7601c22e18498e65b6c
MD5 8b6786d31c4880122e83ebc7c833dee0
BLAKE2b-256 75831c2fd3e75b546ef5f1ff9666b900f7c1d77dcf837d2bcd44e72e9c860033

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page