Suppose I provide a module in the command line and want to import it using the "imp" module:

$ foo.py mod.a.b.c

What is the proper way of doing this?

Split the "mod.a.b.c" and add each path? The behaviour of "imp" does not seem to be parallel to "import".

link|improve this question

72% accept rate
feedback

1 Answer

Given a module path as a string (modulename), you can import it with

module = __import__(modulename,fromlist='.') 

Note that __import__('mod.a.b.c') returns the package mod, while __import__('mod.a.b.c',fromlist='.') returns the module mod.a.b.c.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.