Skip to main content
The clumio-python-sdk package wraps the Clumio REST API in an object-oriented client. Resources are exposed as properties on the client, and operations are invoked on the resource.

Install

Requires Python 3.9 or later. The repository README documents installation from GitHub rather than PyPI.

Authenticate

hostname must match the control plane that issued the token. See Authentication.

Use it

Resources are available as properties. Operations are versioned, which is why the suffix appears in the accessor:
Each resource has a <resource>_paginator property that follows the API’s _links.next chain. The standard controller returns one page and accepts limit and start when you need to manage paging directly.
API errors raise an exception carrying the HTTP status and API error body. Log both when diagnosing a failed request.

Next

REST API reference

The endpoint-level reference behind every SDK method.

Source and issues

Read the code, report a bug, or open a pull request.