I know this is allowed in Python2
from module1 import *
from module2 import *
...
I was wondering if there was a way I could do the same in one line. Doesn't look like this is allowed :
from module1, module2 ... import *
I don't want something like
import module1, module2 ...
because that would need me to access functions like
module_name.function_name(...)
I want to access them directly by name. If this has been asked before, please do point me in the right direction. Thanks a lot !