javadoc for python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Olaf Meding

    javadoc for python

    I played a little with happydoc and pydoc and wonder which one I should use.

    Also, is there a better documentation general available (I am spoiled by
    javadoc).

    Lastly, I could not find good documentation for either happydoc or pydoc.
    Thanks.


    Olaf


  • Josiah Carlson

    #2
    Re: javadoc for python

    > I played a little with happydoc and pydoc and wonder which one I should use.[color=blue]
    >
    > Also, is there a better documentation general available (I am spoiled by
    > javadoc).
    >
    > Lastly, I could not find good documentation for either happydoc or pydoc.
    > Thanks.[/color]

    From your post, you are seemingly just looking for documentation on
    everything that is included with Python. This can be found here:


    If you installed the documentation for Python, when you installed
    Python, it is also included at <path where you installed python>/doc

    Personally, I find no need for pydoc or happydoc, I prefer reading the
    source. Because of the way pydoc (and likely happydoc) pull out
    documentation, all the documentation that is gained from using them is
    readily available in the source, along with comments that are not
    included when the help files are pulled out with pydoc.

    - Josiah

    Comment

    • Wolfgang Langner

      #3
      Re: javadoc for python

      Olaf Meding wrote:
      [color=blue]
      > I played a little with happydoc and pydoc and wonder which one I should use.
      >
      > Also, is there a better documentation general available (I am spoiled by
      > javadoc).[/color]

      Try http://epydoc.sourceforge.net/
      In my opinion it's closed to javadoc.

      bye by Wolfgang

      Comment

      • Stephen Ferg

        #4
        Re: javadoc for python

        I too wish there was Javadoc-style documentation for Python. In any
        event, you might try this:


        Comment

        Working...