Client

cachetclient.Client(endpoint: str = None, api_token: str = None, version: str = None, verify_tls: bool = True) → cachetclient.v1.client.Client

Creates a cachet client. Use this fuction to create clients to ensure compatibility in the future.

Parameters
  • endpoint (str) – The api endpoint. for example ‘https://status.examples.test/api/v1’. The endpoint can also be specified using the CACHET_ENDPOINT env variable.

  • api_token (str) – The api token. Can also be specified using CACHET_API_TOKEN env variable.

  • version (str) – The api version. If not specified the version will be derived from the endpoint url. The value “1” will create a v1 cachet client.

  • verify_tls (bool) – Enable/disable tls verify. When using self signed certificates this has to be False.