How to find all built in libraries in Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T13:30:15Zhttp://stackoverflow.com/feeds/question/329498http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/329498/how-to-find-all-built-in-libraries-in-python5How to find all built in libraries in PythonRich Bradshaw2008-11-30T22:21:34Z2009-04-20T18:42:23Z
<p>I've recently started with Python, and am enjoying the "batteries included" design. I'e already found out I can import time, math, re, urllib, but don't know how to know that something is builtin rather than writing it from scratch.</p>
<p>What's included, and where can I get other good quality libraries from?</p>
http://stackoverflow.com/questions/329498/how-to-find-all-built-in-libraries-in-python/329509#3295093Answer by Patrick Harrington for How to find all built in libraries in PythonPatrick Harrington2008-11-30T22:26:42Z2008-12-01T03:29:37Z<p>The Python Global Module Index (<a href="http://docs.python.org/modindex.html" rel="nofollow">http://docs.python.org/modindex.html</a>) lists out every module included in Python 2.6. </p>
<p>Sourceforge has all sorts of good Python modules - one that came in handy for me recently was PyExcelerator, a module for writing straight to MS Excel workbooks. The Python Package Index, (<a href="http://pypi.python.org/" rel="nofollow">http://pypi.python.org/</a>) is also a good source of Python modules.</p>
http://stackoverflow.com/questions/329498/how-to-find-all-built-in-libraries-in-python/329510#32951014Answer by ConcernedOfTunbridgeWells for How to find all built in libraries in PythonConcernedOfTunbridgeWells2008-11-30T22:26:58Z2008-12-01T00:29:22Z<p>Firstly, the <a href="http://www.python.org/doc/2.5.2/lib/lib.html" rel="nofollow">python libary reference</a> gives a blow by blow of what's actually included. And the <a href="http://docs.python.org/modindex.html" rel="nofollow">global module index</a> contains a neat, alphabetized summary of those same modules. If you have dependencies on a library, you can trivially test for the presence with a construct like:</p>
<pre><code>try:
import foobar
except:
print 'No foobar module'
</code></pre>
<p>If you do this on startup for modules not necessarily present in the distribution you can bail with a sensible diagnostic.</p>
<p>The <a href="http://pypi.python.org/pypi" rel="nofollow">Python Package Index</a> plays a role similar to that of CPAN in the perl world and has a list of many third party modules of one sort or another. Browsing and searching this should give you a feel for what's about. There are also utilities such as <a href="http://pypi.python.org/pypi/yolk" rel="nofollow">Yolk</a> which allow you to query the Python Package Index and the installed packages on Python.</p>
<p>Other good online Python resources are:</p>
<ul>
<li><p><a href="http://www.python.org" rel="nofollow">www.python.org</a></p></li>
<li><p>The <a href="http://groups.google.com/group/comp.lang.python" rel="nofollow">comp.lang.python</a> newsgroup - this is still very active.</p></li>
<li><p>Various of the <a href="http://www.python.org/links/" rel="nofollow">items linked off</a> the Python home page.</p></li>
<li><p>Various home pages and blogs by python luminaries such as <a href="http://www.pythonware.com/daily/" rel="nofollow">The Daily Python URL</a>, <a href="http://www.effbot.org/" rel="nofollow">effbot.org</a>, <a href="http://code.activestate.com/recipes/langs/python/" rel="nofollow">The Python Cookbook</a>, <a href="http://blog.ianbicking.org/" rel="nofollow">Ian Bicking's blog</a> (the guy responsible for SQLObject), and the <a href="http://planet.python.org/" rel="nofollow">Many blogs and sites off planet.python.org.</a></p></li>
</ul>
http://stackoverflow.com/questions/329498/how-to-find-all-built-in-libraries-in-python/329518#32951810Answer by Dustin for How to find all built in libraries in PythonDustin2008-11-30T22:34:52Z2008-11-30T22:34:52Z<p>run</p>
<pre><code>pydoc -p 8080
</code></pre>
<p>and point your browser to <a href="http://localhost:8080/" rel="nofollow">http://localhost:8080/</a></p>
<p>You'll see everything that's installed and can spend lots of time discovering new things. :)</p>
http://stackoverflow.com/questions/329498/how-to-find-all-built-in-libraries-in-python/329519#3295190Answer by hasen j for How to find all built in libraries in Pythonhasen j2008-11-30T22:35:11Z2008-11-30T22:35:11Z<p>This is not directly related to your question, but when you're in the python console, you can call help() on any function and it will print its documentation.</p>
<p>also, you can call dir() on any module or object and it will list all of its attributes, including functions.</p>
<p>This useful for inspecting contents of a module after you've imported it.</p>
<pre><code>>>> import math
>>> dir(math)
['__doc__', '__name__', 'acos', 'asin', 'atan', 'atan2', 'ceil', 'cos', 'cosh', 'degrees', 'e', 'exp', 'fabs', 'floor', 'fmod', 'frexp', 'hypot', 'ldexp', 'log', 'log10', 'modf', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh']
>>> help( math.log )
Help on built-in function log in module math:
log(...)
log(x[, base]) -> the logarithm of x to the given base.
If the base not specified, returns the natural logarithm (base e) of x.
</code></pre>
http://stackoverflow.com/questions/329498/how-to-find-all-built-in-libraries-in-python/769569#7695691Answer by ianb for How to find all built in libraries in Pythonianb2009-04-20T18:42:23Z2009-04-20T18:42:23Z<p><a href="http://blog.doughellmann.com/" rel="nofollow">Doug Hellman's blog</a> covers lots of built-in libraries in depth. If you want to learn more about the standard library you should definitely read through his articles.</p>