A Python client library for the ConnectLife Cloud API, designed for Home Assistant integrations.
- Async/await support
- Full type hints
- Comprehensive error handling
- Device management
- Real-time status updates
- Power consumption tracking
- Self-check diagnostics
pip install connectlife-cloudimport asyncio
from connectlife_cloud import ConnectLifeCloudClient
async def main():
client = ConnectLifeCloudClient(
client_id="your_client_id",
client_secret="your_client_secret"
)
try:
# Get devices
devices = await client.get_devices(access_token="your_token")
print(f"Found {len(devices)} devices")
# Control a device
result = await client.control_device(
puid="device_puid",
properties={"power": True, "mode": "cool"},
access_token="your_token"
)
print(f"Control result: {result}")
finally:
await client.close()
asyncio.run(main())The main client class for interacting with the ConnectLife Cloud API.
get_devices(access_token): Get list of devicescontrol_device(puid, properties, access_token): Control a deviceget_property_list(device_type_code, device_feature_code, access_token): Get device propertiesquery_static_data(puid, access_token): Query static device dataget_hour_power(date, puid, access_token): Get hourly power consumptionget_self_check(no_record, puid, access_token): Get device self-check infoget_devices_with_parsers(access_token): Get devices with their parsersparse_device_status(device_id, status): Parse device status using appropriate parser
Utilities for converting device mode descriptions (Chinese or English) to standard Home Assistant strings.
HVAC Mode Functions:
convert_mode_to_ha_string(mode_description): Convert HVAC mode description to HA standard stringget_ha_mode_string(value_map, device_value): Get HA HVAC mode string from device value mapfind_device_value_for_ha_mode(value_map, ha_mode_string): Find device value for given HA mode (reverse lookup)
Fan Mode Functions:
convert_fan_mode_to_ha_string(fan_description): Convert fan mode description to HA standard stringget_ha_fan_mode_string(value_map, device_value): Get HA fan mode string from device value mapfind_device_value_for_ha_fan_mode(value_map, ha_fan_mode_string): Find device value for given HA fan mode (reverse lookup)
The library handles bilingual support internally, converting Chinese descriptions (自动, 制冷, 制热, etc.) to standard English strings that can be directly used with Home Assistant enums like HVACMode("auto").
MIT License