Load toml/yaml/json config files into classes for a typed config (type hinting etc.)
Project description
Configuraptor
Load toml/yaml/json config files into classes for a typed config (type hinting etc.).
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])
More examples can be found in examples.
License
configuraptor
is distributed under the terms of the MIT license.
Changelog
Project details
Release history Release notifications | RSS feed
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.7.2.tar.gz
(517.6 kB
view details)
Built Distribution
File details
Details for the file configuraptor-1.7.2.tar.gz
.
File metadata
- Download URL: configuraptor-1.7.2.tar.gz
- Upload date:
- Size: 517.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f62407b3be86e083500aa2e57f13d52ab47e4e332f2ec6a5ba1718aa25ba77d |
|
MD5 | 65b29ce73c5b48ac06050f7d9ebc8874 |
|
BLAKE2b-256 | e71b273437e0603d0c55d033dcba9fbad4b3123bb583f793bd9e05cb3ea613b2 |
File details
Details for the file configuraptor-1.7.2-py3-none-any.whl
.
File metadata
- Download URL: configuraptor-1.7.2-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 104e97ce2794ba26282e729919293a36f733bcc1a9d51eb8a635f53d911c8977 |
|
MD5 | 92d9a236c53dd4860f79e90455040f29 |
|
BLAKE2b-256 | bb0006a66bf39c362ba916848c9f67e5880a27856f05f6c3a716353b79769cdc |