I am trying to import the members of a module whose name is not known. Instead of
import foo
I am using:
__import__("foo")
How can I achieve a similar thing for the from foo import bar case instead of resorting to an "eval"?
Update: It seems fromlist did the trick. Is there a way to emulate from foo import *? fromlist=['*'] didn't do the trick.
解决方案
To emulate from foo import * you could use dir to get the attributes of the imported module:
foo = __import__('foo')
for attr in dir(foo):
if not attr.startswith('_'):
globals()[attr] = getattr(foo, attr)
Using from foo import * is generally frowned upon, and emulating it even more so, I'd imagine.