Source code for resimpy.Path

__version__ = "v1.0"
__copyright__ = "Copyright 2022"
__license__ = "MIT"
__lab__ = "Adam Cribbs lab"

import os


[docs]def root_dict(): """ .. @description: ------------- abs file path. :return: """ ROOT_DICT = os.path.dirname(os.path.abspath(__file__)) return ROOT_DICT
[docs]def to(path): return os.path.join( root_dict(), path )