467d0418ff
geändert: README.md geändert: pyproject.toml geändert: src/config_parser/__init__.py neue Datei: src/config_parser/_configuration.py neue Datei: src/config_parser/exceptions.py neue Datei: src/config_parser/ini.py neue Datei: src/config_parser/json.py neue Datei: src/config_parser/parse/ini.py neue Datei: src/config_parser/parse/json.py neue Datei: tests/ini/test_ini.py neue Datei: tests/json/test.json neue Datei: tests/json/test_json.py neue Datei: tests/json/test_parser.py neue Datei: tests/test_configuration_class.py
14 lines
286 B
Python
14 lines
286 B
Python
'''
|
|
A library for parsing configuration files in various formats.
|
|
|
|
Modules:
|
|
- configuration: Base classes.
|
|
- ini: INI file parser and serializer.
|
|
- exceptions: Custom exceptions for configuration parsing.
|
|
'''
|
|
|
|
from ._configuration import Configuration
|
|
|
|
__all__ = [
|
|
'Configuration'
|
|
] |