I have a project structured as this:
parent/
sub1/
__init__.py
directoryManager.py
sub2
tst.py
in tst.py, I am trying to import directoryManager as ld from sub1, is there anyway to import it without using sys.path.append ?
Thanks very much