Python language API - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T02:31:24Z http://stackoverflow.com/feeds/question/136739 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/136739/python-language-api 2 Python language API Oscar Reyes 2008-09-25T22:59:10Z 2008-09-26T08:34:18Z <p>Hello. I'm starting with Python coming from java. </p> <p>I was wondering if there exists something similar to JavaDoc API where I can find the class, its methods and and example of how to use it.</p> <p>I've found very helpul to use <em>help( thing )</em> from the Python ( command line ) </p> <p>I have found this also:</p> <p><a href="http://docs.python.org/" rel="nofollow">http://docs.python.org/</a></p> <p><a href="http://docs.python.org/modindex.html" rel="nofollow">http://docs.python.org/modindex.html</a></p> <p>But it seems to help when you already the class name you are looking for. In JavaDoc API I have all the classes so if I need something I scroll down to a class that "sounds like" what I need. Or some times I just browse all the classes to see what they do, and when I need a feature my brain recalls me <em>We saw something similar in the javadoc remember!?</em> </p> <p>But I don't seem to find the similar in Python ( yet ) and that why I'm posting this questin. </p> <p>BTW I know that I would eventually will read this:</p> <p><a href="http://docs.python.org/lib/lib.html" rel="nofollow">http://docs.python.org/lib/lib.html</a></p> <p>But, well, I think it is not today.</p> http://stackoverflow.com/questions/136739/python-language-api/136749#136749 4 Answer by JasonTrue for Python language API JasonTrue 2008-09-25T23:00:48Z 2008-09-25T23:00:48Z <p>pydoc?</p> <p>I'm not sure if you're looking for something more sophisticated, but it does the trick.</p> http://stackoverflow.com/questions/136739/python-language-api/136758#136758 1 Answer by Harley for Python language API Harley 2008-09-25T23:03:33Z 2008-09-25T23:03:33Z <p><a href="http://docs.python.org/modindex.html" rel="nofollow">Here</a> is a list of all the modules in python, not sure if that's what you're really after.</p> http://stackoverflow.com/questions/136739/python-language-api/136760#136760 0 Answer by ConcernedOfTunbridgeWells for Python language API ConcernedOfTunbridgeWells 2008-09-25T23:04:21Z 2008-09-25T23:04:21Z <p>If you're working on Windows <a href="http://www.activestate.com/Products/activepython/index.mhtml" rel="nofollow">ActiveState Python</a> comes with the documentation, including the library reference in a searchable help file.</p> http://stackoverflow.com/questions/136739/python-language-api/136783#136783 2 Answer by Andrew Gwozdziewycz for Python language API Andrew Gwozdziewycz 2008-09-25T23:11:13Z 2008-09-25T23:11:13Z <p>The standard python library is fairly well documented. Try jumping into python and importing a module say "os" and running:</p> <pre><code>import os help(os) </code></pre> <p>This reads the doc strings on each of the items in the module and displays it. This is exactly what pydoc will do too.</p> http://stackoverflow.com/questions/136739/python-language-api/136929#136929 1 Answer by Oscar Reyes for Python language API Oscar Reyes 2008-09-25T23:42:37Z 2008-09-25T23:42:37Z <p>I've downloaded Python 2.5 from Python.org and It does not contains pydoc.</p> <pre><code>Directorio de C:\Python25 9/23/2008 10:45 PM &lt;DIR&gt; . 9/23/2008 10:45 PM &lt;DIR&gt; .. 9/23/2008 10:45 PM &lt;DIR&gt; DLLs 9/23/2008 10:45 PM &lt;DIR&gt; Doc 9/23/2008 10:45 PM &lt;DIR&gt; include 9/25/2008 06:34 PM &lt;DIR&gt; Lib 9/23/2008 10:45 PM &lt;DIR&gt; libs 2/21/2008 01:05 PM 14,013 LICENSE.txt 2/21/2008 01:05 PM 119,048 NEWS.txt 2/21/2008 01:11 PM 24,064 python.exe 2/21/2008 01:12 PM 24,576 pythonw.exe 2/21/2008 01:05 PM 56,354 README.txt 9/23/2008 10:45 PM &lt;DIR&gt; tcl 9/23/2008 10:45 PM &lt;DIR&gt; Tools 2/21/2008 01:11 PM 4,608 w9xpopen.exe 6 archivos 242,663 bytes </code></pre> <p>But it has ( the substitute I guess ) pydocgui...</p> <pre><code>C:\Python25&gt;dir Tools\Scripts\pydocgui.pyw 10/28/2005 07:06 PM 222 pydocgui.pyw 1 archivos 222 bytes </code></pre> <p>This launches a webserver and shows what I was looking for. All the modules plus all the classes that come with the platform.</p> <p>The Doc dir contains the same as in:</p> <p><a href="http://docs.python.org/" rel="nofollow">http://docs.python.org/</a></p> <p>Thanks a lot for guide me to pydoc.</p> http://stackoverflow.com/questions/136739/python-language-api/137335#137335 1 Answer by S.Lott for Python language API S.Lott 2008-09-26T01:56:12Z 2008-09-26T01:56:12Z <blockquote> <p>BTW I know that I would eventually will read this:</p> <p><a href="http://docs.python.org/lib/lib.html" rel="nofollow">http://docs.python.org/lib/lib.html</a></p> <p>But, well, I think it is not today.</p> </blockquote> <p>I suggest that you're making a mistake. The lib doc has "the class, its methods and and example of how to use it." It <em>is</em> what you are looking for. </p> <p>I use both Java and Python all the time. Dig into the library doc, you'll find everything you're looking for.</p> http://stackoverflow.com/questions/136739/python-language-api/138121#138121 0 Answer by crystalattice for Python language API crystalattice 2008-09-26T07:16:09Z 2008-09-26T07:16:09Z <p>It doesn't directly answer your question (so I'll probably be downgraded), but you may be interested in <a href="http://www.jython.org/Project/" rel="nofollow">Jython</a>.</p> <blockquote> <p>Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.</p> </blockquote> <p>Since you are coming from Java, Jython may help you leverage Python while still allowing you to use your Java knowledge.</p> http://stackoverflow.com/questions/136739/python-language-api/138240#138240 0 Answer by Oli for Python language API Oli 2008-09-26T08:07:29Z 2008-09-26T08:07:29Z <p>You can set the <em>environment variable</em> <strong>PYTHONDOCS</strong> to point to where the python documentation is installed.</p> <p>On my system, it's in <em>/usr/share/doc/python2.5</em></p> <p>So you can define this variable in your <em>shell profile</em> or somewhere else depending on your system:</p> <blockquote> <p>export PYTHONDOCS=/usr/share/doc/python2.5</p> </blockquote> <p>Now, if you open an interractive python console, you can call the help system. For exemple:</p> <blockquote> <pre><code>&gt;&gt;&gt; help(Exception) &gt;&gt;&gt; Help on class Exception in module exceptions: &gt;&gt;&gt; class Exception(BaseException) &gt;&gt;&gt; | Common base class for all non-exit exceptions. &gt;&gt;&gt; | &gt;&gt;&gt; | Method resolution order: &gt;&gt;&gt; | Exception </code></pre> </blockquote> <p>Documentation is here:</p> <p><a href="http://docs.python.org/lib/module-pydoc.html" rel="nofollow">http://docs.python.org/lib/module-pydoc.html</a></p> http://stackoverflow.com/questions/136739/python-language-api/138317#138317 0 Answer by Sergei Stolyarov for Python language API Sergei Stolyarov 2008-09-26T08:34:18Z 2008-09-26T08:34:18Z <p>Also try</p> <pre><code>pydoc -p 11111 </code></pre> <p>Then type in web browser <a href="http://localhost:11111" rel="nofollow">http://localhost:11111</a></p> <p>EDIT: of course you can use any other value for port number instead of 11111</p>