Skip to main content

A small framework to build your flexible project configurations

Project description

ConfigFramework 4.0

PyPI version Python version PyPi downloads/m Issues Python package

A small and simple framework to build your configs.

This project been created mostly because of me myself needing some simplistic and at the same time powerful enough tool to create configs, validate them through have simple interface.

Installing

Pypi link: https://pypi.org/project/ConfigFramework

Install with command: pip install ConfigFramework

To install with mypy you must use command: pip install ConfigFramework[mypy]

If you have python below 3.11 or need toml format with ability to write it back: pip install ConfigFramework[toml]

To install with mypy and dev dependencies building requirements you must use command: pip install ConfigFramework[mypy,dev]

Documentation

ConfigFrameworks stable branch documentation

How to build docs for local usage

  1. Install dev-requirements.txt via pip install -r dev-requirements.txt
  2. Change a current directory to docs/
  3. Execute make html
  4. Open build/html folder and then open index.html in your browser

Example of usage

Here's basic example:

from config_framework import BaseConfig, VariableKey, Variable
from config_framework.loaders import Dict

loader = Dict.load(
    data=dict(
        user_id=1,
        nested_val=dict(pi=3.14)
    )
)


class ConfigSample(BaseConfig):
    user_id: Variable[int] = Variable(VariableKey("user_id"))
    pi_value = Variable(VariableKey("nested_val") / "pi")
    # Defaults only applied when key isn't found.
    # Also default values will be validated after initializing, and after you register new validator.
    some_value = Variable("not_found_value", default="Hello world")

    @staticmethod
    @user_id.register_validator
    def validate_user_id(var, value):
        # Functions can return bool values or raise
        # config_framework.types.custom_exceptions.InvalidValueError
        # for more detailed description.
        return value == 1

    def __post_init__(self) -> None:
        print("Post init here!")
        print("Values aren't locked yet")

        self.new_value = 122


config = ConfigSample(loader)
print("User id:", config.user_id)
print("Pi value:", config.pi_value)
print("Some value:", config.some_value)
print("Post inited value:", config.new_value)

# Configs by default aren't modifiable since frozen=True
# If you need changing variables for modifying config - you must
# create an instance of like this: ConfigSample(frozen=False)
# But right now it will raise NotImplementedError
config.some_value = "random"

See examples with explanation here

Supported formats

Config formats:

  • Yaml
  • Toml (read only with default lib included with python 3.11, and read-write with toml external lib)
  • Json (strings or files)
  • Environment variables
  • Pythons dictionaries
  • Composite loading from multiple simple loaders

Features

  • Loading configs from multiple sources
  • Creating custom loaders and variables types
  • Flexible configs definition
  • Config values validations
  • Casting variables values to specific types using functions
  • Casting to acceptable variable type before dumping variable to loader
  • Variables serialization/deserialization depending on from which loader it was fetched
  • Default values for per loader or per variable
  • Translating one config loaders data to other (with or without including default values for each one)
  • Composite loaders that allow you to define where to look up values using only one loader, that handles combining others
  • Simple access to variables values
  • Single entry point for initialization of config with loader

About 4.0

This version of ConfigFramework is not backwards compatible and requires a bit of work to make migration. It was needed to get rid of annoying initialization with one config loader per variable listing, which also made it really hard to replace config sources and made it more uncertain where is the source of data for variable.

What is different?

  • Configs must get only one loader as input when initializing them, and all variables don't have argument for specifying loader.
  • Added toml support for python above 3.11 and with external library that adds ability to read and write data.
  • Changes in internals regarding variables initialization to support assigning data from provided loader dynamically on initialization of whole config.
  • Added pyproject.toml for more modern package management.

Known issues

  • Typehint for Variable[any_type] doesn't work properly and give only hints for Variable methods, while must give hints for any_type, when called from instance of any subclass of BaseConfig

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

ConfigFramework-4.0.0.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

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

ConfigFramework-4.0.0-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

Details for the file ConfigFramework-4.0.0.tar.gz.

File metadata

  • Download URL: ConfigFramework-4.0.0.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for ConfigFramework-4.0.0.tar.gz
Algorithm Hash digest
SHA256 620f7ab4cf1ddf7adaff0ef598ad7509edef4803cad74df4429c73c712dbc199
MD5 83fa7e0c5b04fe50f5e44eb0a23e53dc
BLAKE2b-256 cdbd8f23cfaa482f083c7e6615830ca0d2490a2a684d298e47b101998ea5c32f

See more details on using hashes here.

File details

Details for the file ConfigFramework-4.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ConfigFramework-4.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 faa9cdbc39ce2d3dabf378ce7c7848e8ef390ea5892c281964cd422dbda52269
MD5 9882436b5961bd491c6bf2a494699b07
BLAKE2b-256 d1d97eaf73a2439f7075aebb46cee6f3601b2aed7098d378e4542647b32aea9d

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