Load toml/yaml/json config files into classes for a typed config (type hinting etc.)
Project description
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).
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.
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 useconvert_types=True
to try to convert to your annotated types;.ini
: only supports strings. You can useconvert_types=True
to try to convert to your annotated types;
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.12.1.tar.gz
(533.8 kB
view details)
Built Distribution
File details
Details for the file configuraptor-1.12.1.tar.gz
.
File metadata
- Download URL: configuraptor-1.12.1.tar.gz
- Upload date:
- Size: 533.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8591ee29b0cd177a84ac46f7977d24cb07835d139076cadba1489a3f8484c2b |
|
MD5 | cf8065624163d36244a16f08bdfe1c8d |
|
BLAKE2b-256 | c34424e9925f031ff59cc4b3da6d6761921bab1656712a4347f1e12f15c531ba |
File details
Details for the file configuraptor-1.12.1-py3-none-any.whl
.
File metadata
- Download URL: configuraptor-1.12.1-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.24.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed2bc7c130c04628e99390c3177ea77a27a2752b53b1c3aa93292304360f7c1b |
|
MD5 | e9720adbfce1a384fd68f9bf54c8da63 |
|
BLAKE2b-256 | ae2c647064d097375759c8dd0273212c377faf3a8fd8e8654d1547f5829b2ba6 |