Skip to main content

Load toml/yaml/json config files into classes for a typed config (type hinting etc.)

Project description

Classy Configuraptor

Configuraptor

Load toml/yaml/json config files into classes for a typed config (type hinting etc.).

PyPI - Version PyPI - Python Version
Code style: black License: MIT
su6 checks Coverage

Table of Contents

Installation

pip install configuraptor

Usage

Configuraptor can be used to load your config files into structured Python classes.

# example_from_docs.toml
[config]
name = "Hello World!"

[config.reference]
number = 42
numbers = [41, 43]
string = "42"

Could be loaded into Python classes using the following code:

# example_from_docs.py
from configuraptor import load_into, TypedConfig

######################
# with basic classes #
######################

class SomeRegularClass:
    number: int
    numbers: list[int]
    string: str


class Config:
    name: str
    reference: SomeRegularClass


if __name__ == '__main__':
    my_config = load_into(Config, "example_from_docs.toml")  # or .json, .yaml

    print(my_config.name)
    # Hello World!
    print(my_config.reference.numbers)
    # [41, 43]


########################
# alternative notation #
########################

class SomeOtherRegularClass:
    number: int
    numbers: list[int]
    string: str


class OtherConfig(TypedConfig):
    name: str
    reference: SomeRegularClass


if __name__ == '__main__':
    my_config = OtherConfig.load("example_from_docs.toml")  # or .json, .yaml

    print(my_config.name)
    # Hello World!
    print(my_config.reference.numbers)
    # [41, 43]

More examples will be available soon.

License

configuraptor is distributed under the terms of the MIT license.

Changelog

See CHANGELOG.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

configuraptor-1.2.1.tar.gz (505.8 kB view details)

Uploaded Source

Built Distribution

configuraptor-1.2.1-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file configuraptor-1.2.1.tar.gz.

File metadata

  • Download URL: configuraptor-1.2.1.tar.gz
  • Upload date:
  • Size: 505.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.24.1

File hashes

Hashes for configuraptor-1.2.1.tar.gz
Algorithm Hash digest
SHA256 7b466b9bb9d165dc267a6c36361d0a64b2ee7306347de8b3401e8fa8f561a59d
MD5 2aef3fb2f312b1c16caec0664e3e1e46
BLAKE2b-256 27c2e3358da0f4c1e01ac5f8d7248659e0bb1d83cdbea53cdb40de381b524640

See more details on using hashes here.

File details

Details for the file configuraptor-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for configuraptor-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 db98fe7a8b94d55d1ea77b18d79a40971b0ac329717e10ba28ba8b8ef89fc755
MD5 c3a1be426f1b4fb6c41d7da8191b1a2e
BLAKE2b-256 ee3aa7ed969e3c7caad68ceba601472aac4752343b8f6d52a8369ccd36ee02dd

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