SyntaxFix
Write A Post
Hire A Developer
Questions
The way I would do it is to leave the __ init__.py files empty, and do:
import lib.mod1.mod11 lib.mod1.mod11.mod12()
or
from lib.mod1.mod11 import mod12 mod12()
You may find that the mod1 dir is unnecessary, just have mod12.py in lib.