postgresql_autodoc in Python?

Jean-Michel Pichavant jeanmichel at sequans.com
Mon Dec 7 09:14:27 EST 2009


Wolfgang Keller wrote:
> Hello,
>
> has anyone ever implemented something similar to postgresql_autodoc in Python?
>
> TIA,
>
> Sincerely,
>
> Wolfgang
>
>   
If by postgresql_autodoc you mean tools for generating html 
documentation from python code, yes.

Starting from the ugliest:

- pydoc
- epydoc
- sphinx

are 3 of them. I would suggest epydoc, the best look&feel/complexity 
ratio. Sphinx is used to generate any kind of documentation (look at 
http://docs.python.org/ it's build with Sphinx) but I never figured out 
how to easily build documentation from code despite it states it is 
posible. With epydoc you only need to press the GO button.

JM



More information about the Python-list mailing list