py.lib.aw_config

Yohn Y. 2024-05-04 Parent:bece3a8a67a5 Child:b76a704f31b1

1:81fc92335324 Go to Latest

py.lib.aw_config/src/aw_config/__init__.py

+ Модуль получения имени директории размещения приложения

History
1 # coding: utf-8
2 from .env import get_env
3 from .type_helpers import ANY, DICT, LIST
4 from .file import ConfigFile, ConfigSectionNotFound, ConfigFileError
5 from .app_tools import get_app_root
8 __all__ = [
9 'get_env',
10 'ANY', 'DICT', 'LIST',
11 'ConfigFile', 'ConfigSectionNotFound', 'ConfigFileError',
12 'get_app_root',
13 ]