Python List todos los métodos de una clase
method_list = [func for func in dir(Foo) if callable(getattr(Foo, func))]
Robert Dorrigan
method_list = [func for func in dir(Foo) if callable(getattr(Foo, func))]