Python répertorie toutes les méthodes d'une classe

method_list = [func for func in dir(Foo) if callable(getattr(Foo, func))]
Robert Dorrigan