class Client(url: str, token: str)

Create a Tilebox workflows client.

Parameters

url
string

Tilebox API Url. Defaults to https://api.tilebox.com.

token
string

The API Key to authenticate with. If not set the TILEBOX_API_KEY environment variable will be used.

Sub clients

The workflows client exposes sub clients for interacting with different parts of the Tilebox workflows API.

def Client.jobs() -> JobClient

A client for interacting with jobs.

def Client.clusters() -> ClusterClient

A client for managing clusters.

def Client.recurrent_tasks() -> RecurrentTaskClient

A client for scheduling recurrent tasks.

Task runners

def Client.runner(...) -> TaskRunner

A client is also used to instantiate task runners. Check out the Client.runner API reference for more information.