Skip to content

RTLS SDK

A Python SDK for the RTLS REST API. Three-step usage:

from rtls_sdk import RtlsClient

client = RtlsClient.from_env()
tags = client.tags.list()

What you get:

  • One method per business workflow — compound flows (e.g. tags.create(name="X", attached_zone="Z")) hide the multi-call sagas the JS reference client makes you script.
  • Lazy login, transparent 401 re-auth, redacted DEBUG logging, typed models, and a single exception hierarchy.
  • Sync-only for v1 (async surface is on the v2 roadmap).

What next