python: Two modules and classes with the same name under different packages
You want to import the User modules in the package __init__.py files to make them available as attributes. So in both Helper/__init_.py and Controller/__init__.py add: from . import User This makes the module an attribute of the package and you can now refer to it as such. Alternatively, you’d have to import the modules themselves … Read more