main > main: src - init

This commit is contained in:
RD
2022-10-10 11:17:47 +02:00
parent 9c6ee783fd
commit e560119bb0
17 changed files with 785 additions and 0 deletions

32
src/thirdparty/config.py vendored Normal file
View File

@@ -0,0 +1,32 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# IMPORTS
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
from dotenv import load_dotenv;
from dotenv import dotenv_values;
import json;
import jsonschema;
from lazy_load import lazy;
from yaml import add_constructor;
from yaml import load as yaml_load;
from yaml import FullLoader as yaml_FullLoader;
from yaml import add_path_resolver as yaml_add_path_resolver;
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# EXPORTS
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
__all__ = [
'load_dotenv',
'dotenv_values',
'json',
'jsonschema',
'lazy',
'add_constructor',
'yaml_load',
'yaml_FullLoader',
'yaml_add_path_resolver',
];