vote up 7 vote down star
2

Hi,

I'm looking for a documentation generator for python. I'm familiar with javadoc, and I tried Doxygen, but it seems quite unfit and counter-intuitive for python.

Any ideas?

Udi

EDIT Apart from the excellent answers below, you can also consult wikipedia's exhaustive Comparison of documentation generators.

flag

6 Answers

vote up 11 vote down check

The classic tool for API doc is epydoc. It handles javadoc, docstrings, etc... But I find API docs tools to be quite poor. I much prefer tool which focus around the documentation itself, and enables to inject additional documentation extracted from the code. Sphinx is perfect for this job. It can generates html and pdf, you can include automatically extracted docstring from code, it does syntax highlighting, etc... A strong point of sphinx is that it is done by someone who knows something about web design, and does not look like a**. matplotlib website and doc is generated entirely from sphinx, with default values. It looks much nicer than anything you will get with epydoc/doxygen. And there is an integrated search engine in javascript

link|flag
Impressive. thanks! I'll try to install it. – Adam Matan Jul 14 at 15:08
vote up 0 vote down

What about NaturalDocs? ? I never used ND with python, but it does have some basic support.

The best thing on ND is that you can easily mix code docs with hand written, separate the docs in many separated files and have everything beautifully organized and searchable (without any server side code, just javascript).

link|flag
interesting concept - I'll download and try it. Thanks! – Adam Matan Jul 14 at 15:17
vote up 0 vote down

I have to second @SilentGhost—Sphinx is really the nicest option. If, for some reason, Sphinx doesn't fit your needs, epydoc might be the closest thing to JavaDoc for Python.

link|flag
vote up 2 vote down

I use Pydoc (http://docs.python.org/library/pydoc.html) to generate all the documentation for my python code

link|flag
vote up 0 vote down

what about sphinx? It is a tool that makes it easy to create intelligent and beautiful documentation
And Expert Python Programming include a chapter(chap 10) for Documenting Your Project

link|flag
vote up 7 vote down

Have a look at Sphinx. There are quite a number of users, including Python itself.

link|flag

Your Answer

Get an OpenID
or

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