Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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".

share|improve this question

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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