In python 2 I can create a module like this:
parent ->module ->__init__.py (init calls \'from file import ClassName\') file.py ->class Cla
Try import it this way:
from .file import ClassName
See here more info on "Guido's decision" on imports in python 3 and complete example on how to import in python 3.