Git Product home page Git Product logo

pdoc's Introduction

pdoc is a library and a command line program to discover the public interface of a Python module or package. The pdoc 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. It is intended that pdoc will be a replacement for the unmaintained epydoc.

To see what generated documentation looks like, check out the documentation for pdoc.

Prominent features include:

  • 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 __pdoc__ 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.
  • pdoc respects your __all__ variable when present.
  • pdoc will automatically link identifiers in your docstrings to its corresponding documentation.
  • When pdoc is run as an HTTP server, external linking is supported between packages.
  • The pdoc 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 pdoc's documentation.

pdoc has been tested on Python 2.6, 2.7 and 3.3.

Installation

pdoc is on PyPI and is installable via pip:

pip install pdoc

Dependencies are mako and markdown. (If you're using Python 2.6, then you'll also need argparse.)

Pygments is an optional dependency. When it's installed, source code will have syntax highlighting.

Documentation

Documentation for the pdoc library is available from pdoc itself: pdoc.burntsushi.net/pdoc. The documentation includes a more in depth description of the features listed above.

Example usage

pdoc 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:

pdoc csv

Or, you could view it by pointing at the file directly:

pdoc /usr/lib/python2.7/csv.py

Submodules are fine too:

pdoc multiprocessing.pool

You can also filter the documentation with a keyword:

pdoc csv reader

Generate HTML with the --html switch:

pdoc --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:

pdoc --http

Then open your web browser to http://localhost:8080.

There are many other options to explore. You can see them all by running:

pdoc --help

License

It's in the public domain.

Motivation

At the time of writing, there are three tools I know of that provide automatic documentation for my Python packages. Those tools are pydoc, epydoc and sphinx. pydoc does not provide facilities for documenting data representation and its HTML output is impossible for me to use productively. sphinx is a tool I have been unable to get working despite trying and failing several times over the past couple years. Moreover, automatic API documentation does not seem to be a primary goal of sphinx, where prose separate from the source code seems encouraged. If the documentation for my module is not with my source code, then I have no hope of maintaining it.

Finally, epydoc is what I had been using for several years. The last release was in 2008 and it is not compatible with Python 3. In addition to the web pages it produces being difficult for me to browse, epydoc is over 10,000 lines of code (not including comments or HTML generation). By the same measure, pdoc is under 800 lines of code.

pdoc's People

Contributors

burntsushi avatar hibou57 avatar jvantuyl avatar knadh avatar ialwaysbecoding avatar razor-x avatar ionelmc avatar mhirota-impinj avatar pieterb avatar tennyzhuang avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.