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.2.tar.gz (11.3 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.2-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ha_xthings_cloud-1.0.2.tar.gz
  • Upload date:
  • Size: 11.3 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.2.tar.gz
Algorithm Hash digest
SHA256 40a76fd0f0f599334f8969d1c45fe7549d926c46f7d304445a828277e0b076fa
MD5 df7b300c96e23c4359cd7d483cf673cc
BLAKE2b-256 cfe9f5d815fc1bfea49cde9aab9681c6bc28cca802df63db904faec252b07b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ha_xthings_cloud-1.0.2.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.2-py3-none-any.whl.

File metadata

File hashes

Hashes for ha_xthings_cloud-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d239972a9c34d73877577e59a862e2f025b869e8a9ad04ca4dbc64cadc77722f
MD5 b7d8c84b23557ad8d1ca7c7aba8c38e6
BLAKE2b-256 9f3c7dd5ca1936cca3a38e5aa00196b2330f73c1998b6afaeae207773455f814

See more details on using hashes here.

Provenance

The following attestation bundles were made for ha_xthings_cloud-1.0.2-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