Coverage for src/configuraptor/__init__.py: 100%
6 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-22 13:07 +0200
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-22 13:07 +0200
1"""
2Exposes TypedConfig and load_into for this library.
3"""
5# SPDX-FileCopyrightText: 2023-present Robin van der Noord <robinvandernoord@gmail.com>
6#
7# SPDX-License-Identifier: MIT
8from .cls import TypedConfig, TypedMapping, TypedMutableMapping, update
9from .core import (
10 all_annotations,
11 check_and_convert_data,
12 convert_config,
13 ensure_types,
14 load_into,
15 load_into_class,
16 load_into_instance,
17)
18from .dump import asdict, asjson, astoml, asyaml
19from .postpone import postpone
20from .singleton import Singleton, SingletonMeta
22__all__ = [
23 # cls
24 "TypedConfig",
25 "TypedMapping",
26 "TypedMutableMapping",
27 "update",
28 # singleton
29 "Singleton",
30 "SingletonMeta",
31 # core
32 "all_annotations",
33 "check_and_convert_data",
34 "convert_config",
35 "ensure_types",
36 "load_into",
37 "load_into_class",
38 "load_into_instance",
39 # postpone
40 "postpone",
41 # dump
42 "asdict",
43 "astoml",
44 "asyaml",
45 "asjson",
46]