In python 3 all imports are absolute unless a relative path is given to perform the import from. You will either need to use an absolute or relative import.
Absolute import:
from parent.file import ClassName
Relative import:
from . file import ClassName
# look for the module file in same directory as the current module
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…