up vote 21 down vote favorite
7
share [g+] share [fb]

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?

eg. something like:

from somemodule import foo
print foo.methods # or whatever is the correct method to call
link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

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.

link|improve this answer
feedback

You can use dir(module) to see all available methods/attributes. Also check out PyDocs.

link|improve this answer
feedback

Once you've imported the module, you can just do:

 help(modulename)

... To get the docs on all the functions at once, interactively. Or you can use:

 dir(modulename)

... To simply list the names of all the functions and variables defined in the module.

link|improve this answer
feedback
import types
import yourmodule

print [yourmodule.__dict__.get(a) for a in dir(yourmodule)
  if isinstance(yourmodule.__dict__.get(a), types.FunctionType)]
link|improve this answer
1  
For this route, use getattr(yourmodule, a, None) instead of yourmodule.__dict__.get(a) – Thomas Wouters Sep 26 '08 at 12:53
Only shows functions, not classes, etc. – kigurai Sep 26 '08 at 15:16
your_module.__dict__ is my choice because you actually get a dict containing functionName:<function> and you now have the ability to CALL that function dynamically. good times! – jsh Jan 28 '11 at 21:31
feedback

This will do the trick:

dir(module) 

However, if you find it annoying to read the returned list, just use the following loop to get one name per line.

for i in dir(module): print i
link|improve this answer
That should be a lower case "dir". – freakTheMighty Jan 23 '11 at 19:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.