Official Python library for Trinity IoT Connect API interactions
Project description
Connect Client for Python
Official Python library for interacting with the Trinity IoT Connect API. This library provides a clean interface for accessing the Connect API endpoints with comprehensive error handling, type hints, and good test coverage.
Table of Contents
Installation
From PyPI (Recommended)
The library is available on PyPI and can be installed using your preferred package manager:
Using uv (recommended)
uv add trinity-connect-client
Using pip
pip install trinity-connect-client
From GitHub
You can also install directly from the GitHub repository:
Using uv
# Install latest release
uv add git+https://github.com/trinity-telecomms/connect-py-client
# Install specific version
uv add git+https://github.com/trinity-telecomms/connect-py-client@v0.2.1
Using pip
# Install latest release
pip install git+https://github.com/trinity-telecomms/connect-py-client
# Install specific version
pip install git+https://github.com/trinity-telecomms/connect-py-client@v0.2.1
Quick Start
from trinity_connect_client import ConnectClient
from trinity_connect_client.exceptions import ResourceNotFoundError, UnauthorisedError
# Initialize the client
client = ConnectClient(
api_version="v4",
base_url="https://capi.trintel.co.za",
token="your-service-account-token"
)
# Get a device by ID (returns dict)
try:
device = client.devices.get(device_id=123)
print(f"Device name: {device['name']}")
except ResourceNotFoundError:
print("Device not found")
except UnauthorisedError:
print("Access denied")
Using Response Models
The library provides type-safe dataclass models for API responses:
from trinity_connect_client import ConnectClient, Device, Company, Folder
client = ConnectClient(
api_version="v4",
base_url="https://capi.trintel.co.za",
token="your-service-account-token"
)
# Get device as dict, then convert to model for type safety
device_dict = client.devices.get(device_id=123)
device = Device.from_dict(device_dict)
# Now you have full type hints and IDE autocomplete
print(f"Device: {device.name}")
print(f"UID: {device.uid}")
print(f"Status: {device.status}")
# Works with all response types
company_dict = client.orgs.get(company_id=1)
company = Company.from_dict(company_dict)
folders_list = client.orgs.get_folders(company_id=1)
folders = [Folder.from_dict(f) for f in folders_list]
Available Models:
Device- Device informationCompany- Company/organization informationFolder- Folder informationDeviceData- Device telemetry dataDeviceEvent- Device eventsDeviceCommand- Device commands
Configuration
Environment Variables
You can set your service account token via environment variables:
export CONNECT_API_TOKEN="your-service-account-token"
export CONNECT_API_BASE_URL="https://capi.trintel.co.za"
import os
from trinity_connect_client import ConnectClient
client = ConnectClient(
api_version="v4",
base_url=os.getenv("CONNECT_API_BASE_URL"),
token=os.getenv("CONNECT_API_TOKEN")
)
Migration from v0.1.x to v0.2.0
Version 0.2.0 introduces breaking changes to authentication:
What Changed
- Credentials-based authentication (email/password) has been removed
- Service account token authentication is now required
- Token caching logic has been removed (tokens are long-lived)
- The
authmodule and login endpoint are no longer available
Upgrading
Before (v0.1.x):
client = ConnectClient(
base_url="https://capi.trintel.co.za",
credentials={
"email": "user@example.com",
"password": "password"
},
cache=cache_instance # Optional
)
After (v0.2.0):
client = ConnectClient(
base_url="https://capi.trintel.co.za",
token="your-service-account-token"
)
How to get a service account token: Contact your Trinity IoT administrator to generate a service account token for your application.
Device Commands
The library supports two types of commands for devices:
Issue Custom Commands
Send custom RPC commands directly to devices:
# Issue a custom command to a device by UID
command = {
"rpc": "reboot",
"args": ["force"],
"pid": "0",
"ttl": 300,
"qos": 0
}
response = client.devices.issue_command_by_uid("device-uid-123", command)
Issue Stored Commands
Issue pre-configured stored commands (automation scripts) by their numeric code:
# Issue a stored command
response = client.devices.issue_stored_command_by_uid(
device_uid="device-uid-123",
command_code=240 # Stored command code
)
Stored commands are pre-configured automation scripts in Connect, referenced by their numeric code (e.g., 240, 248) rather than direct device-level RPCs.
Error Handling
The library raises specific exceptions for different error conditions:
from trinity_connect_client.exceptions import (
ResourceNotFoundError,
UnauthorisedError,
ConnectAPIError
)
try:
device = client.devices.get(device_id=123)
except ResourceNotFoundError:
print("Device not found (404)")
except UnauthorisedError:
print("Authentication failed (401)")
except PermissionError:
print("Access forbidden (403)")
except ConnectAPIError as e:
print(f"API error: {e}")
except ValueError as e:
print(f"Invalid input: {e}")
Development
Setting up Development Environment
# Clone the repository
git clone https://github.com/trinity-telecomms/connect-py-client.git
cd connect-py-client
# Install dependencies with uv
uv sync
# Run tests
uv run pytest
# Run linting
uv run ruff check .
Running Tests
# Run all tests
uv run pytest
# Run with coverage
uv run pytest --cov=trinity_connect_client
# Run specific test file
uv run pytest tests/modules/devices/test_devices_api.py
Building the Package
This project uses the uv_build backend for building distributions:
# Build both wheel and source distribution
uv build
# Build only wheel
uv build --wheel
# Build only source distribution
uv build --sdist
# Build to a specific directory
uv build --out-dir dist/
The built distributions will be available in the dist/ directory.
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes
- Add tests for new functionality
- Run the test suite (
uv run pytest) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT Licence - see the LICENCE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trinity_connect_client-0.3.2.tar.gz.
File metadata
- Download URL: trinity_connect_client-0.3.2.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b86d0ae1173eaf4cd0305de384fbe79cd493f798d226066b6ab5fc3c17f3471f
|
|
| MD5 |
80c48b9695dad3d129a78b1d04107bc3
|
|
| BLAKE2b-256 |
391acf03590a3a3027cbb305efcba20eba4586f5d124ad61acd61242bc221418
|
Provenance
The following attestation bundles were made for trinity_connect_client-0.3.2.tar.gz:
Publisher:
release.yml on trinity-telecomms/connect-py-client
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
trinity_connect_client-0.3.2.tar.gz -
Subject digest:
b86d0ae1173eaf4cd0305de384fbe79cd493f798d226066b6ab5fc3c17f3471f - Sigstore transparency entry: 1115144810
- Sigstore integration time:
-
Permalink:
trinity-telecomms/connect-py-client@363b41f7bc10ed33d0f903b1fc6f45d92cf0da52 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/trinity-telecomms
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@363b41f7bc10ed33d0f903b1fc6f45d92cf0da52 -
Trigger Event:
push
-
Statement type:
File details
Details for the file trinity_connect_client-0.3.2-py3-none-any.whl.
File metadata
- Download URL: trinity_connect_client-0.3.2-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd6088bed420988b662f8ac77949eeec3481259993a8508a223fc780ec8175da
|
|
| MD5 |
ebad72a23472d4db37dfe9c7ee04fe67
|
|
| BLAKE2b-256 |
f7702f7fd15e13e13bdec1f571a2f69429a0dece11b4932dad30e16b2ff9eaa9
|
Provenance
The following attestation bundles were made for trinity_connect_client-0.3.2-py3-none-any.whl:
Publisher:
release.yml on trinity-telecomms/connect-py-client
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
trinity_connect_client-0.3.2-py3-none-any.whl -
Subject digest:
dd6088bed420988b662f8ac77949eeec3481259993a8508a223fc780ec8175da - Sigstore transparency entry: 1115144827
- Sigstore integration time:
-
Permalink:
trinity-telecomms/connect-py-client@363b41f7bc10ed33d0f903b1fc6f45d92cf0da52 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/trinity-telecomms
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@363b41f7bc10ed33d0f903b1fc6f45d92cf0da52 -
Trigger Event:
push
-
Statement type: