Skip to main content

conftext - helper for managing configuration contexts

Project description

This package contains a couple of mudules:

  • conftext - a helper for managing configuration contexts.

  • conf_ini - unified configuration handling for ini files.

conftext

Motivation

Imagine handling multi-tenant services, that each require certain config contexts to be specified for using them (think db connection information for instance). A “configuration matrix” if you like. The parameters of these config options are the same, but their values differ. You are creating CLI tools for working with these services and find yourself doing:

$ some_task1(db_host=service_A_ip, db_name=service_A_name, param1, param2)
$ some_task2(db_host=service_A_ip, db_name=service_A_name)
$ some_task3(db_host=service_A_ip, db_name=service_A_name, param1)

$ some_task1(db_host=service_B_ip, db_name=service_B_name, param1, param2)
$ some_task2(db_host=service_B_ip, db_name=service_B_name)
$ some_task3(db_host=service_B_ip, db_name=service_B_name, param1)

This small library intends to help bring things back to:

$ some_task1(param1, param2)
$ some_task2()
$ some_task3(param1)

This is just an example. The tool is meant to be generic and is not nescessarily only made for this particular use case.

Operation

This tool works by providing a way to persist configuration coordinates that can be used to look up the appropriate configuration in the “configuarion matrix”. The configuration coordinates are stored in a file at well-known location (look at current dir, then traverse upwards in file hierarchy until / or ~/.config/conftext.ini).

A command-line tool, also called conftext, can be used to show and manipulate the conftext file.

Usage

Use get_config in code where context-aware config should be loaded. The conftext invoke task can then be used to switch the context config.

Example in code:

defaults = dict(
    service='dummy',
    context='local')

config = Conftext(section='package.module', default_config=defaults)

Command-line usage:

$ conftext show
$ conftext set --service <someservice>
$ conftext set --service <someservice> --context <somecontext>

Ideas

  • add a enter task for the CLI tool that will enter the conf context?
    • when inside conf context, consider modifying the prompt to show vital context config

    • add exit task as well

  • add python prompt with config context as well?

conf_ini

Provides unified configuarion for ini files.

Currently, this means that the configuration for a given package/module is expected to be found in:

~/.config/<package>/<module>.ini

and that the file is expected to in a .ini format that can be parsed by the configparser of the python 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 Distribution

conftext-0.0.12.tar.gz (18.2 kB view details)

Uploaded Source

Built Distribution

conftext-0.0.12-py3-none-any.whl (18.2 kB view details)

Uploaded Python 3

File details

Details for the file conftext-0.0.12.tar.gz.

File metadata

  • Download URL: conftext-0.0.12.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for conftext-0.0.12.tar.gz
Algorithm Hash digest
SHA256 5e349c713c08fa6acc9cb0e321627d4360077999dd97d0c42e440f0bb33bdcdf
MD5 60eed57941c0c25211cd735b25c0bd2a
BLAKE2b-256 0c2ad3945e8781ce0f6b499de8520c0ab2c1da53f6fa3edd46461f42e3cf942d

See more details on using hashes here.

File details

Details for the file conftext-0.0.12-py3-none-any.whl.

File metadata

  • Download URL: conftext-0.0.12-py3-none-any.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.6

File hashes

Hashes for conftext-0.0.12-py3-none-any.whl
Algorithm Hash digest
SHA256 56706e4dfebd6c26f63c1b2b7bd1f3323a20c67d55e7d7bfa9753ebc6df68d7f
MD5 1df00287d265a9bd177766f1fb544e01
BLAKE2b-256 3a713470e9b493d98d3597f2938034e0d43c176db3011dbcd004f4ff003889da

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