I have a directory structure like:
mycode
|
└-----dirA
| └─---- fileA.py
└─----dirB
└─---- fileB.py
How do I import fileB.object from fileA.py? I have __init__.py's in all the folders, including "mycode", but I continually get errors that I can't find fileB.py from fileA.py, and relative imports don't work either.