Skip to main content

No project description provided

Project description

essex-config

essex-config is a Python library for creating configuration objects that read from various sources, including files, environment variables, and Azure Key Vault.

Installation

Install the essex-config library using pip:

pip install essex-config

Basic Usage

Create a configuration object for connecting to a customer database:

from pydantic import BaseModel, Field
from essex_config import config

@config()
class CustomerDatabase(BaseModel):
    """Configuration for connecting to the Customer Database"""
    host: str = Field(default="127.0.0.1", description="DB connection host")
    port: int = Field(description="DB connection port")
    password: str = Field(description="DB connection password")

if __name__ == "__main__":
    config = CustomerDatabase.load_config()
    print(config)

When CustomerDatabase.load_config() is executed, values are populated from environment variables or default values.

Advanced Usage

Sources

Add different sources for configuration data using the sources parameter in the @config decorator:

from essex_config.sources import EnvSource

@config(sources=[EnvSource()])
class CustomerDatabase(BaseModel):
    ...

essex-config supports three built-in sources:

  1. EnvSource(): Reads from environment variables. Looks for the field name in uppercase (e.g., HOST for host).
  2. FileSource(file_path: Path | str, use_env_var: bool = False): Reads from toml, json, or yaml files. use_env_var=True allows specifying the file path via an environment variable.
  3. KeyvaultSource(keyvault_name: str, use_env_var: bool = False): Fetches values from an Azure Key Vault. use_env_var=True allows specifying the Key Vault name via an environment variable.

Example of multiple sources:

from pydantic import BaseModel, Field
from essex_config import config
from essex_config.sources import EnvSource, FileSource, KeyVaultSource

@config(sources=[
    EnvSource(),
    FileSource("SETTINGS_PATH", use_env_name=True),
    KeyVaultSource("KEYVAULT_NAME", use_env_name=True),
    FileSource("pyproject.toml")
])
class CustomerDatabase(Config):
    """Configuration for connecting to the Customer Database"""
    host: str = Field(default="127.0.0.1", description="DB connection host")
    port: int = Field(description="DB connection port")
    password: str = Field(description="DB connection password")

Fields are populated from sources in the specified order.

Custom Sources

Define custom sources by implementing a Source object and overriding the _get_value() and __contains__() methods. Optionally override the _format() method to provide a custom formatting for the prefix and key.

Example of a custom source:

T = TypeVar("T")

class MockSource(Source):
    def __init__(self):
        self.data = {
            "hello": "world"
        }

    def _get_value(self, key: str, value_type: type[T]) -> T:
        return convert_to_type(self.data[key], value_type)

    def __contains__(self, key: str) -> bool:
        """Check if the key is present in the source."""
        return key in self.data

Prefixes

The @config decorator supports using a prefix for values in different sources:

@config(prefix="customer_db")
class CustomerDatabase(BaseModel):
    """Configuration for connecting to the Customer Database"""
    host: str = Field(default="127.0.0.1", description="DB connection host")
    port: int = Field(description="DB connection port")
    password: str = Field(description="DB connection password")

With a prefix, sources look for values accordingly:

  • EnvSource(): Uses UPPER_SNAKE_CASE (e.g., CUSTOMER_DB_HOST, CUSTOMER_DB_PORT, CUSTOMER_DB_PASSWORD).
  • FileSource(): Looks deeper into the file structure (e.g., customer_db.host).
  • KeyvaultSource(): Joins the prefix with the key using ..

To add a prefix for a specific field, use Annotated:

@config(prefix="customer_db")
class CustomerDatabase(BaseModel):
    """Configuration for connecting to the Customer Database"""
    host: Annotated[str, Prefixed("some_prefix")] = Field(default="127.0.0.1", description="DB connection host")
    port: int = Field(description="DB connection port")
    password: str = Field(description="DB connection password")

In this case, the prefix for host will be customer_db.some_prefix.

Alias

Use Annotated to add source-specific aliases:

@config(prefix="db")
class CustomerDatabase(BaseModel):
    """Configuration for connecting to the Customer Database"""
    host: Annotated[str, Alias(EnvSource, ["customer_db_host"])] = Field(default="127.0.0.1", description="DB connection host")
    port: int = Field(description="DB connection port")
    password: str = Field(description="DB connection password")

essex-config will look to populate host from db.customer_db_host when using the EnvSource.

Nested Configurations

Nest configuration objects:

class Inner(BaseModel):
    inner_hello: str

@config()
class NestedConfiguration(BaseModel):
    hello: str
    nested: Inner

nested_config = NestedConfiguration.load_config()

load_config() populates every field, including nested_config.nested.inner_hello. The default prefix for every field in Inner is nested, which can be changed with Annotated[Inner, Prefixed("new_prefix")].

Documentation Generation

Generate documentation for configuration classes as a markdown file or print to the terminal:

python -m essex_config.doc_gen

Add the --output option to specify a markdown file.

Example of the markdown can be found in CONFIG_EXAMPLE.md

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

essex_config-0.0.2.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

essex_config-0.0.2-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file essex_config-0.0.2.tar.gz.

File metadata

  • Download URL: essex_config-0.0.2.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for essex_config-0.0.2.tar.gz
Algorithm Hash digest
SHA256 41bddecb27b5d95c91347dfc05267b15bfe531f76586fb28fad5d9b53077338e
MD5 62c45e66c58a2cce48b8aea902446b40
BLAKE2b-256 09a264b466172dec8cd7cacfcef6ccf951e93875206ad733ea6ec53cfcfd723d

See more details on using hashes here.

File details

Details for the file essex_config-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: essex_config-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for essex_config-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 8c1d66612438fe577e9220efb78835947106763f0b3f56a32b0fac4c4c87a405
MD5 70270f1d9dbd73f63c0720b2ee0d77fe
BLAKE2b-256 9e031f580f483c73eda72aafde70aba279b7189546c383fdde354baf4bde81d8

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