My directory structure for the Glue extra.py/library files looks like this:
├── script1.py
├── folder1
│ └── script2.py
I can import script1.py like normal:
from script1 import foo
But when I try for script2.py:
from folder1.script2 import foo
it doesn't work and it will trigger an exception saying Module folder1 not found
.
Any help on this?