pydoc
pydoc — Documentation generator and online help system
New in version 2.1.
Source code: Lib/pydoc.py
The pydoc
module automatically generates documentation from Python modules. The documentation can be presented as pages of text on the console, served to a Web browser, or saved to HTML files.
For modules, classes, functions and methods, the displayed documentation is derived from the docstring (i.e. the __doc__
attribute) of the object, and recursively of its documentable members. If there is no docstring