Привет, есть структура файлов:
-/dir_main/
----/INTERLAYER/
------__init__.py
------dependencies.py (тут обычная функция def run_test() )
-/dir_main/
----/test/
------file_010.py (importlib)
Вопрос в том, как в file_010.py вызвать функцию run_test() из dependencies.py. Пробовал так:
[__init__.py из INTERLAYER]
__all__ = ["run_test"]
[file_010.py]
interl = importlib.import_module("INTERLAYER")
interl.run_test(routine_n=["r1.py"], routine_p=["bank"])
получаю:
AttributeError("module 'INTERLAYER' has no attribute 'run_test'")
-
Вопрос задан
-
73 просмотра