Contents:
from .base import Base [docs]class Cluster(Base): endpoint = '/cluster' [docs] def get_cluster_status(self): return self.client.get( self.endpoint + '/status' )