I have the following directory structure:
- GNS
- gns_export.py
- new_structure
- DB_Manager.py
and other Files that are not important. When I now try to import a function from DB_manager.py in gns_export.py, I get an error.
In gns_export.py:
from new_structure.DB_Manager import *
Exception:
ModuleNotFoundError: No module named 'new_structure'