Obtenez toutes les méthodes d'une instance

object_methods = [method_name for method_name in dir(object)
                  if callable(getattr(object, method_name))]
Real Raccoon