Can I document Python code with doxygen (and does it make sense)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T13:15:49Z http://stackoverflow.com/feeds/question/58622 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58622/can-i-document-python-code-with-doxygen-and-does-it-make-sense 4 Can I document Python code with doxygen (and does it make sense)? Hanno Fietz 2008-09-12T10:26:40Z 2009-11-27T12:14:47Z <p>I like doxygen to create documentation of C or PHP code. I have an upcoming Python project and I think I remember that Python doesn't have /* .. */ comments and also has its own self-documentation facility which seems to be the pythonic way to document.</p> <p>Can I just use doxygen? Anything particular to be aware of?</p> <p>I have done some coding in Python but so far only on small projects where I was to lazy to document at all (yeah, I know ... but let's just pretend that's OK for now).</p> http://stackoverflow.com/questions/58622/can-i-document-python-code-with-doxygen-and-does-it-make-sense/58701#58701 3 Answer by Blair Conrad for Can I document Python code with doxygen (and does it make sense)? Blair Conrad 2008-09-12T11:11:03Z 2008-09-12T11:11:03Z <p>This is <a href="http://www.stack.nl/~dimitri/doxygen/docblocks.html#pythonblocks" rel="nofollow">documented on the doxygen website</a>, but to summarize here:</p> <p>You can use doxygen to document your Python code. You can either use the Python documentation string syntax:</p> <pre><code>"""@package docstring Documentation for this module. More details. """ def func(): """Documentation for a function. More details. """ pass </code></pre> <p>In which case the comments will be extracted by doxygen, but you won't be able to use any of the <a href="http://www.stack.nl/~dimitri/doxygen/commands.html#cmd_intro" rel="nofollow">special doxygen commands</a>.</p> <p><strong>Or</strong> you can (similar to C-style languages under doxygen) double up the comment marker (<code>#</code>) on the first line before the member:</p> <pre><code>## @package pyexample # Documentation for this module. # # More details. ## Documentation for a function. # # More details. def func(): pass </code></pre> <p>In that case, you can use the special doxygen commands. There's no particular Python output mode, but you can apparently improve the results by setting <code>OPTMIZE_OUTPUT_JAVA</code> to <code>YES</code>.</p> <p>Honestly, I'm a little surprised at the difference - it seems like once doxygen can detect the comments in ## blocks or """ blocks, most of the work would be done and you'd be able to use the special commands in either case. Maybe they expect people using """ to adhere to more Pythonic documentation practices and that would interfere with the special doxygen commands?</p> http://stackoverflow.com/questions/58622/can-i-document-python-code-with-doxygen-and-does-it-make-sense/59018#59018 1 Answer by Peter Hoffmann for Can I document Python code with doxygen (and does it make sense)? Peter Hoffmann 2008-09-12T13:48:59Z 2008-09-12T13:48:59Z <p>An other very good documentation tool is <a href="http://sphinx.pocoo.org/" rel="nofollow">sphinx</a>. It will be used for the upcoming python 2.6 <a href="http://docs.python.org/dev/" rel="nofollow">documentation</a> and is used by <a href="http://docs.djangoproject.com/en/dev/" rel="nofollow">django</a> and a lot of other python projects.</p> <p>From the sphinx website:</p> <ul> <li><strong>Output formats</strong>: HTML (including Windows HTML Help) and LaTeX, for printable PDF versions</li> <li><strong>Extensive cross-references</strong>: semantic markup and automatic links for functions, classes, glossary terms and similar pieces of information</li> <li><strong>Hierarchical structure</strong>: easy definition of a document tree, with automatic links to siblings, parents and children</li> <li><strong>Automatic indices</strong>: general index as well as a module index</li> <li><strong>Code handling</strong>: automatic highlighting using the Pygments highlighter</li> <li><strong>Extensions</strong>: automatic testing of code snippets, inclusion of docstrings from Python modules, and more</li> </ul> http://stackoverflow.com/questions/58622/can-i-document-python-code-with-doxygen-and-does-it-make-sense/59955#59955 5 Answer by Allen for Can I document Python code with doxygen (and does it make sense)? Allen 2008-09-12T21:04:48Z 2008-09-12T21:04:48Z <p>Sphinx is mainly a tool for formatting docs written independently from the source code, as I understand it.</p> <p>For generating API docs from Python docstrings, the leading tools are <a href="http://epydoc.sf.net" rel="nofollow">Epydoc</a> and <a href="http://codespeak.net/~mwh/pydoctor/" rel="nofollow">pydoctor</a>. Here's pydoctor's generated API docs for <a href="http://twistedmatrix.com/documents/current/api" rel="nofollow">Twisted</a> and <a href="http://starship.python.net/crew/mwh/bzrlibapi/" rel="nofollow">Bazaar</a>.</p> <p>Of course, if you just want to have a look at the docstrings while you're working on stuff, there's the "pydoc" command line tool as well as the <code>help()</code> function available in the interactive interpreter.</p> http://stackoverflow.com/questions/58622/can-i-document-python-code-with-doxygen-and-does-it-make-sense/497322#497322 2 Answer by Kevin Mack for Can I document Python code with doxygen (and does it make sense)? Kevin Mack 2009-01-30T21:30:02Z 2009-01-30T21:30:02Z <p>The <a href="http://code.foosel.org/doxypy" rel="nofollow">doxypy</a> input filter allows you to use pretty much all of Doxygen's formatting tags in a standard Python docstring format. I use it to document a large mixed C++ and Python game application framework, and it's working well.</p>