listing all functions in a python module - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:02:53Z http://stackoverflow.com/feeds/question/139180 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module 3 listing all functions in a python module Chris Gow 2008-09-26T12:38:52Z 2008-09-26T23:41:16Z <p>I'm not a pythonista, so I'm not sure if this is really obvious or not. I have a python module installed on my system and I'd like to be able to see what functions/classes/methods are available in it so I can call the doc function on each one. In ruby I can do something like ClassName.methods to get a list of all the methods available on that class. Is there something similar in python?</p> <p>eg. something like:</p> <pre><code>from somemodule import foo print foo.methods # or whatever is the correct method to call </code></pre> http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module/139193#139193 13 Answer by camflan for listing all functions in a python module camflan 2008-09-26T12:40:20Z 2008-09-26T12:40:20Z <p>You can use <code>dir(module)</code> to see all available methods/attributes. Also check out PyDocs.</p> http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module/139198#139198 3 Answer by Thomas Wouters for listing all functions in a python module Thomas Wouters 2008-09-26T12:41:04Z 2008-09-26T12:41:04Z <p>The inspect module. Also see the 'pydoc' module, the 'help()' function in the interactive interpreter and the 'pydoc' command-line tool which generate the documentation you are after. You can just give them the class you wish to see the documentation of. They can also generate, for instance, HTML output and write it to disk.</p> http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module/139258#139258 0 Answer by Oli for listing all functions in a python module Oli 2008-09-26T12:50:39Z 2008-09-26T12:50:39Z <pre><code>import types import yourmodule print [yourmodule.__dict__.get(a) for a in dir(yourmodule) if isinstance(yourmodule.__dict__.get(a), types.FunctionType)] </code></pre> http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module/140106#140106 6 Answer by Dan for listing all functions in a python module Dan 2008-09-26T15:08:54Z 2008-09-26T15:08:54Z <p>Once you've <code>import</code>ed the module, you can just do:</p> <pre><code> help(modulename) </code></pre> <p>... To get the docs on all the functions at once, interactively. Or you can use:</p> <pre><code> dir(modulename) </code></pre> <p>... To simply list the names of all the functions and variables defined in the module.</p> http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module/142501#142501 -1 Answer by Algorias for listing all functions in a python module Algorias 2008-09-26T23:41:16Z 2008-09-26T23:41:16Z <p>This will do the trick:</p> <pre><code>Dir(module) </code></pre> <p>However, if you find it annoying to read the returned list, just use the following loop to get one name per line.</p> <pre><code>for i in dir(module): print i </code></pre>