A simple program and library to auto generate API documentation for Python modules.
Project description
pdocs
is a library and a command line program to discover the public
interface of a Python module or package. The pdocs
script can be used to
generate plain text or HTML of a module's public interface, or it can be used
to run an HTTP server that serves generated HTML for installed modules.
Installation
pip install pdocs
Features
- Support for documenting data representation by traversing the abstract syntax to find docstrings for module, class and instance variables.
- For cases where docstrings aren't appropriate (like a
namedtuple),
the special variable
__pdocs__
can be used in your module to document any identifier in your public interface. - Usage is simple. Just write your documentation as Markdown. There are no added special syntax rules.
pdocs
respects your__all__
variable when present.pdocs
will automatically link identifiers in your docstrings to its corresponding documentation.- When
pdocs
is run as an HTTP server, external linking is supported between packages. - The
pdocs
HTTP server will cache generated documentation and automatically regenerate it if the source code has been updated. - When available, source code for modules, functions and classes can be viewed in the HTML documentation.
- Inheritance is used when possible to infer docstrings for class members.
The above features are explained in more detail in pdocs's documentation.
pdocs
is compatible with Python 3.5 and newer.
Example usage
pdocs
will accept a Python module file, package directory or an import path.
For example, to view the documentation for the csv
module in the console:
pdocs csv
Or, you could view it by pointing at the file directly:
pdocs /usr/lib/python3.7/csv.py
Submodules are fine too:
pdocs multiprocessing.pool
You can also filter the documentation with a keyword:
pdocs csv reader
Generate HTML with the --html
switch:
pdocs --html csv
A file called csv.m.html
will be written to the current directory.
Or start an HTTP server that shows documentation for any installed module:
pdocs --http
Then open your web browser to http://localhost:8080
.
There are many other options to explore. You can see them all by running:
pdocs --help
Submodule loading
pdocs
uses idiomatic Python when loading your modules. Therefore, for pdocs
to
find any submodules of the input module you specify on the command line, those
modules must be available through Python's ordinary module loading process.
This is not a problem for globally installed modules like sys
, but can be a
problem for your own sub-modules depending on how you have installed them.
To ensure that pdocs
can load any submodules imported by the modules you are
generating documentation for, you should add the appropriate directories to your
PYTHONPATH
environment variable.
For example, if a local module a.py
imports b.py
that is installed as
/home/jsmith/pylib/b.py
, then you should make sure that your PYTHONPATH
includes /home/jsmith/pylib
.
If pdocs
cannot load any modules imported by the input module, it will exit
with an error message indicating which module could not be loaded.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pdocs-0.1.1.tar.gz
.
File metadata
- Download URL: pdocs-0.1.1.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.3 Linux/5.0.0-23-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68be6fbb773ff3db5498fc6dd68537ffac1d5826e637a06200b7afbf48141b79 |
|
MD5 | c211bc499f0930e75172ef4022a9a98e |
|
BLAKE2b-256 | 5f975423fa438a3e51215ef0b72c159baa61f60bc0a140013ce08ef7b361daf2 |
File details
Details for the file pdocs-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: pdocs-0.1.1-py3-none-any.whl
- Upload date:
- Size: 33.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.3 Linux/5.0.0-23-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4dbc5dd970b87c77f70b33149e2aa094903ea10c25263f7f99d8f4ae18b86b8 |
|
MD5 | 7326c276ea7a9cc951e7816e8686a2ad |
|
BLAKE2b-256 | 92b617a533a255833261440def2ff289040a2096d7440bbd64f6d1240cbf3ff2 |