Given a string with a module name, how do you import everything in the module as if you had called:
from module import *
i.e. given string S=’module’, how does one get the equivalent of the following:
__import__(S, fromlist='*')
This doesn’t seem to perform as expected (as it doesn’t import anything).
Please reconsider. The only thing worse than
import *is magicimport *.If you really want to: