Skip to main content

Async Python client for Xthings Cloud API

Project description

ha-xthings-cloud

Async Python client for the Xthings Cloud API, designed for Home Assistant integration.

Installation

pip install ha-xthings-cloud

Usage

API Client

import aiohttp
from ha_xthings_cloud import XthingsCloudApiClient

async with aiohttp.ClientSession() as session:
    client = XthingsCloudApiClient(session)

    # Login (supports 2FA)
    result = await client.async_login("user@example.com", "password")

    # Get devices
    devices = await client.async_get_devices()

    # Control devices
    await client.async_switch_on("device-uuid")
    await client.async_brite_brightness("device-uuid", 80)
    await client.async_lock_lock("device-uuid")

WebSocket (Real-time Push)

from ha_xthings_cloud import XthingsCloudWebSocket

def on_status(device_uuid, status):
    print(f"Device {device_uuid}: {status}")

async def on_token_expired():
    # refresh token logic
    pass

ws = XthingsCloudWebSocket(session, token, on_status, on_token_expired)
await ws.async_start()

KVS Signaling (Camera WebRTC)

from ha_xthings_cloud import KvsSignalingClient

kvs = KvsSignalingClient(session, region, channel_arn, credentials)
answer_sdp = await kvs.async_get_answer_sdp(offer_sdp, on_ice_candidate=callback)

Features

  • Async HTTP client with aiohttp.ClientSession injection
  • Authentication: login, token refresh, 2FA (email/phone)
  • Device control: Switch, Plug, Light (brightness/HS color/color temp), Lock, Camera
  • WebSocket: real-time device status push with auto-reconnect
  • KVS Signaling: AWS Kinesis Video Streams WebRTC SDP exchange with SigV4 auth
  • FRP remote access configuration

API Reference

XthingsCloudApiClient

Method Description
async_login(email, password, ...) Login with optional 2FA
async_refresh_token(refresh_token) Refresh auth token
async_get_devices() Get device list
async_get_device_status(device_id) Get single device status
async_switch_on/off(device_id) Switch control
async_plug_on/off(device_id) Plug control
async_brite_on/off(device_id) Light on/off
async_brite_brightness(device_id, brightness) Light brightness (0-100)
async_brite_color(device_id, color) Light color (HS/color temp)
async_lock_lock/unlock(device_id) Lock control
async_get_camera_webrtc(device_id) Get camera KVS credentials
async_get_frp_config(client_id) Get FRP remote access config

XthingsCloudWebSocket

Method Description
async_start() Start WebSocket with auto-reconnect
async_stop() Stop WebSocket connection

KvsSignalingClient

Method Description
async_get_answer_sdp(offer_sdp, on_ice_candidate) SDP offer/answer exchange
async_send_ice_candidate(candidate, sdp_mid, sdp_mline_index) Send ICE candidate
async_get_ice_server_config() Get TURN/STUN servers
async_close() Close signaling connection

License

Apache-2.0

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

ha_xthings_cloud-1.0.4.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ha_xthings_cloud-1.0.4-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file ha_xthings_cloud-1.0.4.tar.gz.

File metadata

  • Download URL: ha_xthings_cloud-1.0.4.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ha_xthings_cloud-1.0.4.tar.gz
Algorithm Hash digest
SHA256 946e03db81789cddce1b65e1d7ab62e428540bc206730fc260c796741bc4971c
MD5 52519c8b8cff7db89d163b0370dfad9b
BLAKE2b-256 12b06b0dc61020773ebd87829eb00545d8f35f624a4b64eecdf082e448458d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ha_xthings_cloud-1.0.4.tar.gz:

Publisher: workflows.yml on XthingsJacobs/ha-xthings-cloud

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ha_xthings_cloud-1.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for ha_xthings_cloud-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1c1760d5ba97b610e010125f5d52128b448416e7a2385636c468384cdec97370
MD5 c1ea9ab2dd1f941c29e199324a239ebf
BLAKE2b-256 852021c2f3658acc46e5615d1e81983cae9a4f30dd800a1a550a0441081e6ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ha_xthings_cloud-1.0.4-py3-none-any.whl:

Publisher: workflows.yml on XthingsJacobs/ha-xthings-cloud

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page