Skip to content

Install

The SDK targets Python 3.10+ and depends on httpx and pydantic v2.

From PyPI

pip install rtls-sdk

To pin a specific release:

pip install rtls-sdk==0.6.0

Verifying the install

python -c "from rtls_sdk import RtlsClient; print(RtlsClient.__module__)"

prints rtls_sdk._client.

Type hints

The wheel ships an inline py.typed marker. Type checkers (mypy --strict, pyright) pick up the package's hints out of the box; no types-* stub package is required.