blob: e100865515463fc9d90a9da9c90cdad28574d3e5 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`pydoc` --- Documentation generator and online help system
2===============================================================
3
4.. module:: pydoc
5 :synopsis: Documentation generator and online help system.
6.. moduleauthor:: Ka-Ping Yee <ping@lfw.org>
7.. sectionauthor:: Ka-Ping Yee <ping@lfw.org>
8
9
Georg Brandl116aa622007-08-15 14:28:22 +000010.. index::
11 single: documentation; generation
12 single: documentation; online
13 single: help; online
14
Raymond Hettinger469271d2011-01-27 20:38:46 +000015**Source code:** :source:`Lib/pydoc.py`
16
17--------------
18
Georg Brandl116aa622007-08-15 14:28:22 +000019The :mod:`pydoc` module automatically generates documentation from Python
20modules. The documentation can be presented as pages of text on the console,
21served to a Web browser, or saved to HTML files.
22
23The built-in function :func:`help` invokes the online help system in the
24interactive interpreter, which uses :mod:`pydoc` to generate its documentation
25as text on the console. The same text documentation can also be viewed from
26outside the Python interpreter by running :program:`pydoc` as a script at the
27operating system's command prompt. For example, running ::
28
29 pydoc sys
30
31at a shell prompt will display documentation on the :mod:`sys` module, in a
32style similar to the manual pages shown by the Unix :program:`man` command. The
33argument to :program:`pydoc` can be the name of a function, module, or package,
34or a dotted reference to a class, method, or function within a module or module
35in a package. If the argument to :program:`pydoc` looks like a path (that is,
36it contains the path separator for your operating system, such as a slash in
37Unix), and refers to an existing Python source file, then documentation is
38produced for that file.
39
Benjamin Petersonda10d3b2009-01-01 00:23:30 +000040.. note::
41
42 In order to find objects and their documentation, :mod:`pydoc` imports the
43 module(s) to be documented. Therefore, any code on module level will be
44 executed on that occasion. Use an ``if __name__ == '__main__':`` guard to
45 only execute code when a file is invoked as a script and not just imported.
46
Éric Araujo713d3032010-11-18 16:38:46 +000047Specifying a ``-w`` flag before the argument will cause HTML documentation
Georg Brandl116aa622007-08-15 14:28:22 +000048to be written out to a file in the current directory, instead of displaying text
49on the console.
50
Éric Araujo713d3032010-11-18 16:38:46 +000051Specifying a ``-k`` flag before the argument will search the synopsis
Georg Brandl116aa622007-08-15 14:28:22 +000052lines of all available modules for the keyword given as the argument, again in a
53manner similar to the Unix :program:`man` command. The synopsis line of a
54module is the first line of its documentation string.
55
56You can also use :program:`pydoc` to start an HTTP server on the local machine
Nick Coghlan7bb30b72010-12-03 09:29:11 +000057that will serve documentation to visiting Web browsers. :program:`pydoc -p 1234`
58will start a HTTP server on port 1234, allowing you to browse the
59documentation at ``http://localhost:1234/`` in your preferred Web browser.
60Specifying ``0`` as the port number will select an arbitrary unused port.
61
Éric Araujo713d3032010-11-18 16:38:46 +000062:program:`pydoc -g` will start the server and additionally bring up a
Ezio Melotti1a263ad2010-03-14 09:51:37 +000063small :mod:`tkinter`\ -based graphical interface to help you search for
Nick Coghlan7bb30b72010-12-03 09:29:11 +000064documentation pages. The ``-g`` option is deprecated, since the server can
65now be controlled directly from HTTP clients.
66
67:program:`pydoc -b` will start the server and additionally open a web
68browser to a module index page. Each served page has a navigation bar at the
69top where you can *Get* help on an individual item, *Search* all modules with a
70keyword in their synopsis line, and go to the *Module index*, *Topics* and
71*Keywords* pages.
Georg Brandl116aa622007-08-15 14:28:22 +000072
73When :program:`pydoc` generates documentation, it uses the current environment
Éric Araujo713d3032010-11-18 16:38:46 +000074and path to locate modules. Thus, invoking :program:`pydoc spam`
Georg Brandl116aa622007-08-15 14:28:22 +000075documents precisely the version of the module you would get if you started the
76Python interpreter and typed ``import spam``.
77
78Module docs for core modules are assumed to reside in
Alexander Belopolskya47bbf52010-11-18 01:52:54 +000079``http://docs.python.org/X.Y/library/`` where ``X`` and ``Y`` are the
80major and minor version numbers of the Python interpreter. This can
81be overridden by setting the :envvar:`PYTHONDOCS` environment variable
82to a different URL or to a local directory containing the Library
83Reference Manual pages.
Georg Brandl116aa622007-08-15 14:28:22 +000084
Nick Coghlan7bb30b72010-12-03 09:29:11 +000085.. versionchanged:: 3.2
Georg Brandl34e9fc22010-12-03 09:45:33 +000086 Added the ``-b`` option, deprecated the ``-g`` option.