I have a simple file structure as follows
+-- project
| +-- app
| +-- server.py
+-- box
| +-- __init__.py
| +-- boxes.py
I am trying to import functions in boxes.py to server .py as follows:
from box.boxes import functions
but I keep getting the following error:
ModuleNotFoundError: No module named 'box'
Can anyone explain what I am doing wrong?