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 config files into Python classes for a typed config (for type hinting etc.). Supported file types are toml/yaml/json, and .env/.ini to a lesser degree (see Supported Config File Types).

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]

    # TypedConfig has an extra benefit of allowing .update:
    my_config.update(numbers=[68, 70])

The second argument of .load_into and the first argument of .load (which is "example_from_readme.toml" in the examples above), can be either a string or a Path to a file, a raw dictionary with data or empty. If it is left empty, the pyproject.toml will be used. You can supply a key='tool.mytool.myconf' to specify which section of the file should be read.

More examples can be found in examples.

Supported Config File Types

  • .toml: supports the most types (strings, numbers, booleans, datetime, lists/arrays, dicts/tables);
  • .json: supports roughly the same types as toml (except datetime);
  • .yaml: supports roughly the same types as toml, backwards compatible with JSON;
  • .env: only supports strings. You can use convert_types=True to try to convert to your annotated types;
  • .ini: only supports strings. You can use convert_types=True to try to convert to your annotated types;

For other file types, a custom Loader can be written. See examples/readme.md#Custom File Types

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

Uploaded Source

Built Distribution

configuraptor-1.15.0-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for configuraptor-1.15.0.tar.gz
Algorithm Hash digest
SHA256 0d9489f2e15ff15e0403455cbfda1e8ef626190dde5a2a9d2bf06346161afa11
MD5 3f2fa2dad2e3d9c98e2f4c78cc85ae42
BLAKE2b-256 c3085c66f42fdb760b355d2d84908ab4edf2de9f9e9bfc050234d2c1a23a1b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for configuraptor-1.15.0-py3-none-any.whl
Algorithm Hash digest
SHA256 511e23a0b76617fde525aeacd7416b2e065140531ea0db5a1fa46030c9eed265
MD5 7b5d277d1ab40325a6fa9161af0acc5f
BLAKE2b-256 318686195e208bb106428761b2cc8e37a44186e229c6b3466a8be3184ac7f602

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