What tools are used to write and generate Python Library documentation.

beza1e1 andreas.zwinkau at googlemail.com
Tue Sep 27 02:21:57 EDT 2005


Do you think of pydoc? Just make comments in your code this way:

def add10(x):
    """this function adds ten to the given variable"""

Then save this into add.py and now (in the same directory):

pydoc add

Voila, your documentation.




More information about the Python-list mailing list