This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TITLE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from importlib.util import module_from_spec, spec_from_file_location | |
from pathlib import Path | |
from types import ModuleType | |
def load_module_from_path(path: Path | str, module_name: str) -> ModuleType: | |
"""See also | |
https://docs.python.org/3/library/importlib.html#importing-a-source-file-directly | |
""" | |
spec = spec_from_file_location(module_name, path) |