I would like to get a list of Python modules, which are in my Python installation (UNIX server).
How can you get a list of Python modules installed in your computer?
In ipython you can type "importTab".
import
In the standard Python interpreter, you can type "help('modules')".
help('modules')
At the command-line, you can use pydoc modules.
modules
In a script, call pkgutil.iter_modules().