Quantcast
Channel: Dynamically importing Python modules - Stack Overflow
Viewing all articles
Browse latest Browse all 5

Dynamically importing Python modules

$
0
0

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.


Viewing all articles
Browse latest Browse all 5

Latest Images

Trending Articles





Latest Images