In python you have to use
import <module>
to import a file with classes.
Imagine the module contains multiple classes
And now I want to declare an object
x = module.object1Name(parameter1,parmeter2)
How can I declare that object without having to access it through module? (So like this below)
x = object1Name(parameter1,parameter2)
Also I do not want to use the following because it would mean I would have to do that for every class.
from <module> import <objectName>