Reading other posts I have structured my project as below:
/__init__.py
/src/main.py
/src/search-tree/node.py
/src/search-tree/multi_child_node.py
/src/utils/node_generator.py
Now when I'm inside node_generator.py
I would like to import multi_child_node.py
and use its class but I don't know how to do it, I have tried from .x import y
but nothing. I'm new in python so maybe I'm missing something very simple.