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.

Possible Duplicate:
Unable to get a list of installed Python modules

How do I print a list of all the modules that are available for import from within my script in Python3?

share|improve this question
Yes, this is a duplicate. Thanks for your help! – Baz Feb 8 '12 at 13:30

marked as duplicate by Wooble, Mark, Shawn Chin, eumiro, Johnsyweb Feb 8 '12 at 13:25

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 4 down vote accepted

In ipython you can type "importTab".

In the standard Python interpreter, you can type "help('modules')".

At the command-line, you can use pydoc modules.

share|improve this answer

To access the list of all installed modules accessible via sys.path programmatically rather than inside an interactive session, you can use pkgutil.iter_modules().

share|improve this answer

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