Multilevel relative import
I have following folder structure
top\\ __init__.py util\\ __init__.py utiltest.py foo\\ __init
You must import foobar from the parent folder of top:
foobar
top
import top.foo.bar.foobar
This tells Python that top is the top level package. Relative imports are possible only inside a package.