Skip to main content

Config injector for Python

Project description

Python Config Injector

PyPI - Python Version PyPI - Package Version PyPI - License Build Coverage Status Code style: black Checked with mypy Imports: isort security: bandit

What is this

It is a simple library to inject non-sensitive configurations into class variables. Basically, it's like BaseSettings in pydantic library but for constants in json, yaml, toml or ini formats. conjector can work with different Python types (like tuple, datetime, dataclass and so on) and recursively cast config values to them.

When to use

  • If you deal with constants in your code, like error messages, default values for something, numeric coefficients, and so on.
  • If you hate global variables, and you like non-python files to store static information.
  • If you want to have an easy way to manage different constants depending on environments (like test, dev, prod).
  • If you like type hints and clean code.

How to install

To install this library just enter:

pip install conjector

By default, conjector work only with the builtin json and ini deserializers. To work with yaml or toml (if you are using python <= 3.10):

pip install conjector[yaml]
# or
pip install conjector[toml]
# or faster version of json
pip install conjector[json]

How to use

For injecting values you need only the decorator properties under a target class. By default, the library will search a config file application.yml in the same directory where your file with the used decorator is located, like below:

project_root
|---services
|   |   email_message_service.py
|   |   application.yml
|.....

Example:

services/application.yml:

default_text_style:
  size: 14
  weight: bold
  font: "Times New Roman"
  color:
    - 128
    - 128
    - 128
language_greetings:
  - language: english
    text: hello
  - language: german
    text: hallo
  - language: french
    text: bonjour
wellcome_message: "{greeting}! Thank you for registration, {username}!"
mailing_frequency:
  days: 5
  hours: 12

services/email_message_service.py:

from typing import TypedDict
from dataclasses import dataclass
from datetime import timedelta
from app_properties import properties

@dataclass
class TextStyle:
    size: int
    weight: str
    font: str
    color: tuple[int, int, int] | str

class GreetingDict(TypedDict):
    language: str
    text: str

@properties
class EmailMessageService:
    default_text_style: TextStyle
    language_greetings: list[GreetingDict]
    wellcome_message: str
    mailing_frequency: timedelta | None
    
    # And using these class variables in some methods...

And that's how will look an equivalent of the code above but with "hard-coded" constants, without config files and @properties decorator:

class EmailMessageService:
    default_text_style = TextStyle(
        size=14, weight="bold", font="Times New Roman", color=(128, 128, 128)
    )
    language_greetings = [
      GreetingDict(language="english", text="hello"),
      GreetingDict(language="german", text="hallo"),
      GreetingDict(language="french", text="bonjour"),
    ]
    wellcome_message = "{greeting}! Thank you for registration, {username}!"
    mailing_frequency = timedelta(days=5, hours=12)
    
    # And using these class variables in some methods...

All config values will be inserted and cast according to the type annotations once during the application or script start. Additionally, the decorator takes such params:

  • filename - the name of a file with config. By default, it is application.yml. Use a relative path with ../ to read the file from a parent directory;
  • type_cast - used to know whether you want to cast config values to the field type. By default, it's True, which means values in a config file will be cast according to the type hints. All types specified in the section supported types will be available for type casting. Also, nested types will be recursively cast. If False, type hinting is ignored, and available types are limited by a file format;
  • override_default - used to know whether you want to override the default values of class variables. By default, it is False;
  • lazy_init - used to know whether you want to set config values immediately on the application start-up or on demand ("lazily") after calling the method init_props(). By default, it is False;
  • root - root key in the config. It's the way to create "namespaces" when you work with multiple classes but use a single config file. It could be a nested value with separation by dots, for example:
# example.yml
services:
  email_service:
    key: some value
  auth_service:
    key: another value

clients:
  translation_client:
    key: value

# and so on...
from app_properties import properties

@properties(filename="example.yml", root="services.email_service")
class EmailService:
    key: str  # will store "some value"


@properties(filename="example.yml", root="services.auth_service")
class AuthService:
    key: str  # will store "another value"

Global conjector settings

This library also supports global file settings (like pytest or flake). So, you can override some parameters, which are passed to the decorator if default values aren't ok for you. For example, if you want to have the default config filename my-app.toml and don't write every time @properties(filename="my-app.toml"), just add the next lines in pyproject.toml in your project root:

[tool.conjector]
filename = "my-app.toml"

And now you can use just bare decorator without parenthesis:

@properties
class MyClass:
    ...

Also, conjector can work with the tox.ini ([conjector] section) and setup.cfg ([tool:conjector] section) configuration formats, so you must put your options under the appropriate sections.

Different environments

Using this library it's easy to manage different environments and corresponding config files. It could be done like so:

import os
from app_properties import properties


@properties(filename=os.getenv("CONFIG_FILENAME", "application.yml"))
class SomeEnvDependingService:
    env_depend_var: str

In this case, you set CONFIG_FILENAME=application-dev.yml in env variables, and conjector will use that file.

Lazy initialization

If you want to create some dataclass instance with filled required data during init, and then populated with config values, you can use the parameter lazy_init for this purpose. All file constants will be injected after calling the method init_props:

# All definitions like in previous examples

@properties(lazy_init=True)
@dataclass
class EmailMessageServiceConfig:
    default_text_style: TextStyle
    language_greetings: list[GreetingDict]
    mailing_frequency: timedelta | None = None
    wellcome_message: str = "some_default_message"

email_config = EmailMessageServiceConfig(
    default_text_style=TextStyle(
        size=16, weight="normal", font="Arial", color="black"
    ),
    language_greetings=[GreetingDict(language="english", text="hello")]
)
# it works like a normal dataclass instance
assert email_config.default_text_style == TextStyle(
    size=16, weight="normal", font="Arial", color="black"
)
assert email_config.mailing_frequency is None
assert email_config.wellcome_message == "some_default_message"

# after calling `init_props`, config values will be injected. 
# It also overrides all values that we set during initialize before.
email_config.init_props()
assert email_config.default_text_style == TextStyle(
    size=14, weight="bold", font="Times New Roman", color=(128, 128, 128)
)
assert email_config.mailing_frequency == timedelta(days=5, hours=12)
assert email_config.wellcome_message == (
    "{greeting}! Thank you for registration, {username}!"
)

Because there are 3 sources of data (default values, values passed during initialization, and config file values), it could be hard to understand how we can resolve this conflict. Bellow is the table to clarify the behavior of the init_props method.

init default config will be used
- + - default
- + + config
+ ~ - init
+ ~ + init \ config

+- provided; -- missing; ~- not affect.

How you can see, when both init and config values provided, they are equally important, but, by default, config have higher priority and overrides init. If you, for some reason, don't want to override already initialized values, only defaults, it's also possible with init_props(override_init=False)

Supported types

The table below shows how config values (json syntax example) are cast to Python types:

Python type Config file type Config example
int int
str
10
"10"
float float
int
str
10.5
10
"10.5"
str str "string value"
bool bool
int
str
true / false
1 / 0
"True" / "False", "true" / "false"
None null null
dict dict {"key": "value"}
list
tuple
set
frozenset
list ["val1", "val2"]
TypedDict dict {"str_var": "value"}
NamedTuple list
dict
["value", 10]
{"str_val": "value", "int_val": 10}
dataclass dict {"str_val": "str", "int_val": 10}
datetime.datetime str
int
list
dict
"2022-12-11T10:20:23"
1670754600
[2022, 12, 11, 10, 20, 23]
{"year": 2022, "month": 12, "day": 11, "hour": 10, "minute": 20, "second": 23}
datetime.date str
list
dict
"2022-12-11"
[2022, 12, 11]
{"year": 2022, "month": 12, "day": 11}
datetime.time str
list
dict
"12:30:02"
[12, 30, 2]
{"hour": 12, "minute": 30, "second": 2}
datetime.timedelta dict {"days": 1, "hours": 2, "minutes": 10}
enum.Enum str
int
"VALUE"
10
re.Pattern str "\w+"
decimal.Decimal str
int
float
"12.150"
100
12.5
Warning #1: toml config format doesn't support heterogeneous types in an array,
like ["string", 10]. So, using iterables with mixed types
(e.g. `list[str int]ortuple[str, int]`) and corresponding type casting
aren't possible in this case.

Warning #2: ini config format doesn't support list with dicts or other lists, like list[list[int]] or list[dict[str, Any]]. Only primitive types (int, float, str, bool and null) are available.

About ini config

By default, configparser.ConfigParser doesn't support lists and deep nested dicts, but conjector makes it possible to work with them. How does it look?

Python code:

{
    "some_key": {
        "another_key": "value",
        "deep_key": {
            "key1": True,
            "key2": None,
        }
    },
    "just_key": 10,
    "mixed_list": [10, "20", 30.5, None]
}

.ini config

[some_key]
another_key = "value"
[some_key.deep_key]
key1 = true
key2 = null
[root]
just_key = 10
mixed_list[] = 10,20,30.5,null

As you can see above, a list in a .ini config is coma-separated values where a key has a suffix [] in the end. The dict nesting is also trivial, all you need is just dot-separated keys of nested dicts in [section] part. Also, you should remember that configparser can't work with variables without sections, so if you want to put some values in the root of a config just write a section [root] (or [ROOT]) above, like in the previous example.

About contributing

You will make conjector better if you open issues or create pull requests with improvements.

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

conjector-1.6.0.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

conjector-1.6.0-py3-none-any.whl (14.0 kB view details)

Uploaded Python 3

File details

Details for the file conjector-1.6.0.tar.gz.

File metadata

  • Download URL: conjector-1.6.0.tar.gz
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for conjector-1.6.0.tar.gz
Algorithm Hash digest
SHA256 fda9d854d0adbd3f59905082f641c7a491eab2e68f74f432e93753b8ec9336f3
MD5 3898a5bd857901a135cc4a5ef3e0aa5b
BLAKE2b-256 ba0ea7909b69f5a077545b1d6ff2f9f7389d6b2c764e4131c2cdb6a6057f3f23

See more details on using hashes here.

File details

Details for the file conjector-1.6.0-py3-none-any.whl.

File metadata

  • Download URL: conjector-1.6.0-py3-none-any.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for conjector-1.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b11f64f92788f8b121fcafa86a3c095862048219052ad9628810dd3bc4b70df7
MD5 61aba4eeba214cb9b91d1db1068d5cfe
BLAKE2b-256 325251b2706888f28dbef9fe6b02de0783365ef16d67a5c7c926cc22ccf46c71

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