PyMOTW: pydoc – Online help for Python modules
Originally posted
· 1 min read
The pydoc
module imports a Python module and uses the contents to generate help text at runtime. The output includes docstrings for any objects that have them, and all of the documentable contents of the module are described.