Why is the relative import not working in my project?
06:42 08 Mar 2021

I am working on a python project which consist of several packages and modules. Hence I need to import modules from different packages. However, when importing these modules I am getting import errors. The folder structure is as follows: Image of folder structure

Within the module Stage0.py I use the relative import: "from ..data.Datapipe import DataFactory" to import the class DataFactory. However when I execute the script I get an error message: "ModuleNotFoundError: No module named 'MT'"

I would appreciate any feedback as I'm becoming desperate

python import