About this question
I have a python module installed on my system and want to see all functions/classes/methods available in it.
I want to 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 in that class. Is there something similar in python? How to get python list functions in module.
eg. something like:
from somemodule import foo
print foo.methods # or whatever is the correct method to call