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.

Lets say I have path to a module in a string module_to_be_imported = 'a.b.module'
How can I import it ?

share|improve this question

3 Answers

up vote 6 down vote accepted
>>> m = __import__('xml.sax')
>>> m.__name__
'xml'
>>> m = __import__('xml.sax', fromlist=[''])
>>> m.__name__
'xml.sax'
share|improve this answer

You can use the build-in __import__ function. For example:

import sys

myconfigfile = sys.argv[1]

try:
    config = __import__(myconfigfile)
    for i in config.__dict__:
        print i            
except ImportError:
    print "Unable to import configuration file %s" % (myconfigfile,)

For more information, see:

share|improve this answer
Use fromlist parameter otherwise you get a instead of a.b.module stackoverflow.com/questions/3102252/… – J.F. Sebastian Jun 23 '10 at 14:05
x = __import__('a.b.module', fromlist=[''])

Reference

share|improve this answer
>>> n =__import__('mobius.api') >>> n <module 'mobius' from '/home/rhiwale/Desktop/nfsrepo/rohit/mobius/../mobius/__init__.pyc'> >>> >>> for i in n.__dict__: ... print i ... settings builtins docs file polls package path api video name doc ccb >>> Why mobius gets imported instead of mobius.api ? – Nullpoet Jun 23 '10 at 14:12
See comment below for answer. Updating my answer now. – huntaub Jun 23 '10 at 14:15

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.