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.

# examples/example_from_readme.toml
[config]
name = "Hello World!"

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

Could be loaded into Python classes using the following code:

# examples/example_from_readme.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_readme.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_readme.toml")  # or .json, .yaml

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

More examples can be round in examples.

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.5.1.tar.gz (515.4 kB view details)

Uploaded Source

Built Distribution

configuraptor-1.5.1-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for configuraptor-1.5.1.tar.gz
Algorithm Hash digest
SHA256 a73bcf25b811756321cf0d98d53f7094d4816c8586cdad4cc5c9b050036afd51
MD5 89992bb617f320233971e74be0d41207
BLAKE2b-256 a4f15537fc557831d4e0cb9205ba9d1c6376956feef62ed6ef40e1ac5a8339e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for configuraptor-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3c48868ea15116dff720798610702c05a16ce5b3e73b8e00ce8577400792be7b
MD5 aae0be244cb58884bd6ca65d53cb0685
BLAKE2b-256 a23363e50d1cf235ab873d13f460829a1dc4691e20300970182c856b5a2b0583

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