vote up 4 vote down star
1

What is out there on conventions and tools for documenting python source code?

flag

59% accept rate

4 Answers

vote up 6 vote down check

Epydoc is also a good tool for documenting source code, and handles cross-referencing classes, modules, variables, etc, into HTML, PDF, LaTeX. Draws some nice class inheritance diagrams too. It's used by a number of open-source projects, so it's fairly actively developed.

link|flag
vote up 7 vote down

First, put comments in your docstrings using RestructuredText format.

Second, get sphinx.

Third, create an index that uses the autodoc extension.

Then, run Sphinx to get really nice documentation.

link|flag
vote up 3 vote down

It's very nice to put code documentation in the code itself. See:

link|flag
vote up 20 vote down

Conventions: PEP 257 and PEP 8. Note, that docstrings can be written in reStructuredText

Tools for generating documentation: for example Sphinx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.