In
ipython
you can type "import
Tab".In the standard Python interpreter, you can type "
help('modules')
".At the command-line, you can use
pydoc
modules
.In a script, call
pkgutil.iter_modules()
.
↧
Answer by johnsyweb for How do I get a list of locally installed Python modules?
↧