PythonMapper/Python/Application/PythonMapper.py

15 lines
643 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from Abstracts.Applications import ApplicationsAbstract
from Abstracts.AnPMap import AnP, Optional, Any
from os.path import abspath as path_absolute
from os.path import dirname as directory_name
class PythonMapper(ApplicationsAbstract):
def __init__(self, anp:AnP|None, inputs:Optional[dict[str, Any|None]|tuple|list] = None) -> None:
super().__init__(anp, "python_mapper", anp.path.get_parent(path_absolute(directory_name(__file__))), {
**anp.get_dictionary(inputs),
"python_mapper_default_settings_files" : "/JSON/PythonMapper.py.settings.json"
})