Python full path import not working across branches in package tree
问题 I have the following project structure: Project - GUI - ...Modules - Data - Database - ...Modules - Files - ...Modules - Utilities - ...Modules And I am trying to do some imports over package borders, for example: in the file(Module) Project.Database.dbdriver I try to import Project.Utilities.Conversions . If I use a fully specified import like import Project.Utilities.Conversions this fails, it works with import Utilities.Conversions , i.e. I can not specify more off the path than those part