Python language API - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T02:31:24Zhttp://stackoverflow.com/feeds/question/136739http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/136739/python-language-api2Python language APIOscar Reyes2008-09-25T22:59:10Z2008-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#1367494Answer by JasonTrue for Python language APIJasonTrue2008-09-25T23:00:48Z2008-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#1367581Answer by Harley for Python language APIHarley2008-09-25T23:03:33Z2008-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#1367600Answer by ConcernedOfTunbridgeWells for Python language APIConcernedOfTunbridgeWells2008-09-25T23:04:21Z2008-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#1367832Answer by Andrew Gwozdziewycz for Python language APIAndrew Gwozdziewycz2008-09-25T23:11:13Z2008-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#1369291Answer by Oscar Reyes for Python language APIOscar Reyes2008-09-25T23:42:37Z2008-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 <DIR> .
9/23/2008 10:45 PM <DIR> ..
9/23/2008 10:45 PM <DIR> DLLs
9/23/2008 10:45 PM <DIR> Doc
9/23/2008 10:45 PM <DIR> include
9/25/2008 06:34 PM <DIR> Lib
9/23/2008 10:45 PM <DIR> 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 <DIR> tcl
9/23/2008 10:45 PM <DIR> 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>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#1373351Answer by S.Lott for Python language APIS.Lott2008-09-26T01:56:12Z2008-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#1381210Answer by crystalattice for Python language APIcrystalattice2008-09-26T07:16:09Z2008-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#1382400Answer by Oli for Python language APIOli2008-09-26T08:07:29Z2008-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>>>> help(Exception)
>>> Help on class Exception in module exceptions:
>>> class Exception(BaseException)
>>> | Common base class for all non-exit exceptions.
>>> |
>>> | Method resolution order:
>>> | 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#1383170Answer by Sergei Stolyarov for Python language APISergei Stolyarov2008-09-26T08:34:18Z2008-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>