product/ ├── api │ ├── hello.py │ └── init.py ├── init.py └── my_module.py how can i import my_module from hello.py note: init is dunder init. for some reason i can't add __.
import sys sys.path.insert(0, '../') import my_module