Why does __import__({module},{fromlist=[methods...]}) give me all the methods?
From what I've read from forums, in order to import certain methods from modules for runtime, something like this is required:
But I realized that doing that gives me all the methods I need. Does that mean that I can just replace that with:
and use the dot operator to access the method?