Skip to main content

python util for cfg (configurations)

Project description

pyutil-cfg

python utilility for configurations.

This package helps parsing .toml configurations and json-like configurations in .ini.

Usage

import pyutil_cfg as cfg

logger, config = cfg.init(name, filename)

File Formats

.toml

For the .toml files, the format follows TOML specification.

You can check production.tmpl.toml or test/data for more details.

.ini

For the .ini files, you can check production.tmpl.ini or test/data for more details.

Assume that you have the following development.ini:

[demo]
VAR_INT = 1
VAR_BOOL = true
VAR_DICT = {"A": 1, "B": "a"}
VAR_LIST = [
    {"A": 2, "B": "b"},
    {"A": 3, "B": "c"},
    {"A": 4, "B": "d"}]

Then with the following code:

import pyutil_cfg as cfg

logger, config = cfg.init('demo', 'development.ini')

logger is a logger with name = 'demo'

config ia as follow:

config = {
    "VAR_INT": 1,
    "VAR_BOOL": true,
    "VAR_DICT": {"A": 1, "B": "a"},
    "VAR_LIST": [
        {"A": 2, "B": "b"},
        {"A": 3, "B": "c"},
        {"A": 4, "B": "d"}
    ],
}

Advanced Usage

Separated log configuration filename

import pyutil_cfg as cfg


logger, config = cfg.init(name, filename, log_name, log_filename)

With default parameters

import pyutil_cfg as cfg

default_params = {'test_params': 'default'}

logger, config = cfg.init(name, filename, default_params=default_params)

Additional customized config parameters (specified as dict)

import pyutil_cfg as cfg

extra_params = {'test_params': 'test'}

logger, config = cfg.init(name, filename, extra_params=extra_params)

Ok if extra parameters are already in the configuration file (default: True)

It is usual that we would like to temporarily change the configuration settings through command-line variables.

Because usually we still want to continue the process even if the extra parmeters are accidentally in the configuration file. Only warning logs if this parameter is set as False and some extra parameters are already in configuration file.

import pyutil_cfg as cfg

logger, config = cfg.init(name, filename, is_extra_params_in_file_ok=True)

Skip extra parameters if already in the configuration file. (default: False)

Skip extram parameters if they are already in the configuration file.

import pyutil_cfg as cfg

logger, config = cfg.init(name, filename, is_skip_extra_params_in_file=True)

Show configuration before returning. (default: False)

Setup the log-level to show the computed configurations before return. None as no-show.

Do not show the configuration before return.

import pyutil_cfg as cfg

logger, config = cfg.init(name, filename)

Show the configruration if the logger is set to logging.DEBUG

import pyutil_cfg as cfg

logger, config = cfg.init(name, filename, show_config=logging.DEBUG)

Show the configuration if the logger is set to logging.INFO or logging.DEBUG.

import pyutil_cfg as cfg

logger, config = cfg.init(name, filename, show_config=logging.INFO)

Misc

  • Reason retaining pyutil_ prefix: cfg is an extremely common name. Retaining pyutil_ to avoid naming conflict.
  • Reason not including .json: not a good file format for config.
  • Reason not including .yaml: not the standard library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyutil_cfg-0.2.0-py3-none-any.whl (18.8 kB view details)

Uploaded Python 3

File details

Details for the file pyutil_cfg-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pyutil_cfg-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pyutil_cfg-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4cc98894e83c6289c61be0e3bfafcb74c904b4fffa8b5417460e2dbd40ce49a4
MD5 1be729de6a1c56f73ae32cc673201985
BLAKE2b-256 93a1f8f20e8e9972cee5e792369ce3406137624b782fda59b3432edde0d97513

See more details on using hashes here.

Supported by

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