Sorting through lots python imports is mildly annoying. Very mild.
So with that in mind, here is a possible solution:
In your package folder, in the init file, you can stick this at the base, and it will attempt to dynamically load any modules you request.
So for instance, you could import “one” and then use “one.two.three.four()” provided the init files all contain this snippet.
As an added bonus, you could put one class in each file, with the same name as the file, and by replacing a couple of lines, you can have it pull out the class/variable instead of the entire module. Therefore everything can be split into a nice file structure.