RunnerContext subclass when tasks need shared runtime configuration or helpers during execution.
def execute(self, context: ExecutionContext) -> None:
bucket = context.runner_context.gcs_client("my-project:my-bucket")
blob = bucket.blob("inputs/scene.json")
data = blob.download_as_bytes()
tilebox.workflows
ExecutionContext.runner_context
Was this page helpful?