I have a main folder with my toolbox, in this folder I have several folders with different python scripts.
I'm trying to import toolbox
in my script and I keep getting this error : ModuleNotFoundError: No module named toolbox
I tried several ways found on the web ;
from toolbox import module
also :
from ..toolbox import module
and:
from ..myfolder.toolbox import module
if I copy my toolbox in that exact folder it works, but I don't want to copy it in every folder Any ideas ? thank you