Skip to main content

Async Python client for the Leviton My Leviton cloud API

Project description

aioleviton

Async Python client for the Leviton My Leviton cloud API.

Supports LWHEM and DAU/LDATA Smart Load Centers with WebSocket real-time push and REST API fallback.

Features

  • Pure asyncio with aiohttp -- no blocking calls
  • Accepts an injected aiohttp.ClientSession for connection pooling
  • WebSocket real-time push notifications with automatic subscription management
  • Full REST API coverage: authentication, device discovery, breaker control, energy history
  • Typed data models with PEP 561 py.typed marker
  • Support for both hub types: LWHEM (IotWhem) and DAU/LDATA (ResidentialBreakerPanel)
  • Two-factor authentication (2FA) support

Installation

pip install aioleviton

Quick Start

import aiohttp
from aioleviton import LevitonClient

async def main():
    async with aiohttp.ClientSession() as session:
        # Authenticate
        client = LevitonClient(session)
        auth = await client.login("user@example.com", "password")

        # Discover devices
        permissions = await client.get_permissions()
        for perm in permissions:
            if perm.residential_account_id:
                residences = await client.get_residences(perm.residential_account_id)
                for residence in residences:
                    whems = await client.get_whems(residence.id)
                    panels = await client.get_panels(residence.id)

        # Get breakers for a LWHEM hub
        for whem in whems:
            breakers = await client.get_whem_breakers(whem.id)
            cts = await client.get_cts(whem.id)

        # Get breakers for a DAU panel
        for panel in panels:
            breakers = await client.get_panel_breakers(panel.id)

        # Connect WebSocket for real-time updates
        ws = client.create_websocket()
        await ws.connect()

        # Subscribe to a hub (delivers all child breaker/CT updates)
        await ws.subscribe("IotWhem", whem.id)

        # Handle notifications
        ws.on_notification(lambda data: print("Update:", data))

        # Clean up
        await ws.disconnect()
        await client.logout()

[!IMPORTANT] On LWHEM firmware 2.0.0+, hub subscriptions no longer deliver individual breaker updates. You must subscribe to each ResidentialBreaker separately. CT updates are still delivered via the hub subscription on all firmware versions.

Supported Devices

Device API Model Hub Type
LWHEM (Whole Home Energy Module) IotWhem Wi-Fi hub
DAU / LDATA (Data Acquisition Unit) ResidentialBreakerPanel Wi-Fi hub
Smart Breaker Gen 1 (trip only) ResidentialBreaker Child of LWHEM or DAU
Smart Breaker Gen 2 (on/off) ResidentialBreaker Child of LWHEM or DAU
Current Transformer (CT) IotCt Child of LWHEM only
LSBMA Add-on CT ResidentialBreaker Virtual composite

Authentication

# Standard login
auth = await client.login("user@example.com", "password")

# Login with 2FA code
try:
    auth = await client.login("user@example.com", "password")
except LevitonTwoFactorRequired:
    code = input("Enter 2FA code: ")
    auth = await client.login("user@example.com", "password", code=code)

# Restore a previous session (skip login)
client.restore_session(token="saved_token", user_id="saved_user_id")

# Check auth state
client.authenticated  # True/False
client.token           # current token string or None
client.user_id         # current user ID or None

# Logout (invalidates token)
await client.logout()

Device Discovery

# Get all permissions for the authenticated user
permissions = await client.get_permissions()

# Get residences via account ID
residences = await client.get_residences(account_id)

# Get a residence via permission ID (when permission has residenceId but no account)
residence = await client.get_residence_from_permission(permission_id)

# List hubs in a residence
whems = await client.get_whems(residence_id)     # LWHEM hubs
panels = await client.get_panels(residence_id)   # DAU/LDATA panels

# Get a single hub by ID
whem = await client.get_whem(whem_id)
panel = await client.get_panel(panel_id)

# Get child devices
breakers = await client.get_whem_breakers(whem_id)    # LWHEM breakers
breakers = await client.get_panel_breakers(panel_id)  # DAU panel breakers
cts = await client.get_cts(whem_id)                   # LWHEM CTs

Breaker Control

# Trip a Gen 1 breaker (cannot turn back on remotely)
await client.trip_breaker(breaker_id)

# Turn on/off a Gen 2 breaker
await client.turn_on_breaker(breaker_id)
await client.turn_off_breaker(breaker_id)

# Blink LED on a breaker (toggle on/off)
await client.blink_led(breaker_id)
await client.stop_blink_led(breaker_id)

# Identify LED on a LWHEM hub (on only, no off)
await client.identify_whem(whem_id)

Bandwidth Control

Bandwidth controls the energy reporting mode on hubs. This affects both REST API responses and WebSocket push frequency.

# LWHEM: 0 = off, 1 = fast (period deltas), 2 = medium (default)
await client.set_whem_bandwidth(whem_id, bandwidth=1)

# DAU panel: True = real-time, False = off
await client.set_panel_bandwidth(panel_id, enabled=True)

[!WARNING] With bandwidth=1, the LWHEM REST API returns energyConsumption as period deltas instead of lifetime totals. Reset to 0 before reading energy via REST to get correct lifetime values.

Firmware Updates

# Check for available firmware
firmware = await client.check_firmware(
    app_id="LWHEM",
    model="AZ",
    serial="1000_XXXX_XXXX",
    model_type="IotWhem",
)
for fw in firmware:
    print(f"v{fw['version']}: {fw['fileUrl']}")

# Trigger OTA update on a LWHEM hub (WiFi + BLE)
await client.trigger_whem_ota(whem_id)

# WiFi firmware only
await client.trigger_whem_ota(whem_id, wifi=True, ble=False)

# BLE firmware only
await client.trigger_whem_ota(whem_id, wifi=False, ble=True)

Energy History

Energy history endpoints return consumption data for all devices in a residence. Data is keyed by hub ID, then by breaker position and CT channel.

# Daily energy (hourly data points)
day = await client.get_energy_for_day(
    residence_id=123456,
    start_day="2026-02-16",
    timezone="America/Los_Angeles",
)

# Weekly energy (daily data points for 7 days)
week = await client.get_energy_for_week(
    residence_id=123456,
    start_day="2026-02-17",
    timezone="America/Los_Angeles",
)

# Monthly energy (daily data points for billing month)
month = await client.get_energy_for_month(
    residence_id=123456,
    billing_day_in_month="2026-02-28",
    timezone="America/Los_Angeles",
)

# Yearly energy (monthly data points for 12 months)
year = await client.get_energy_for_year(
    residence_id=123456,
    billing_day_in_end_month="2026-02-16",
    timezone="America/Los_Angeles",
)

# Response structure:
# {
#   "<hub_id>": {
#     "residentialBreakers": {"<position>": [{x, timestamp, energyConsumption, totalCost, ...}]},
#     "iotCts": {"<channel>": [...]},
#     "totals": [...]
#   },
#   "totals": [...]  # residence-level totals
# }

WebSocket

The WebSocket client provides real-time push notifications for device state changes.

# Create and connect
ws = client.create_websocket()
await ws.connect()

# Subscribe to hubs
await ws.subscribe("IotWhem", whem_id)
await ws.subscribe("ResidentialBreakerPanel", panel_id)
await ws.subscribe("ResidentialBreaker", breaker_id)  # FW 2.0.0+ only

# Register callbacks (returns unregister function)
remove_notify = ws.on_notification(lambda data: print(data))
remove_disconnect = ws.on_disconnect(lambda: print("disconnected"))

# Unsubscribe from a model
await ws.unsubscribe("IotWhem", whem_id)

# Check state
ws.connected       # True if connected and authenticated
ws.subscriptions   # set of (model_name, model_id) tuples

# Reconnect (preserves and re-subscribes all previous subscriptions)
await ws.reconnect()

# Calculate backoff delay for reconnection loops
delay = LevitonWebSocket.reconnect_delay(attempts=3)

# Disconnect (preserves subscriptions for later reconnect)
await ws.disconnect()

# Full teardown (clears subscriptions and callbacks)
await ws.reset()

Model Properties

Breaker

breaker.is_smart        # True if real smart breaker (not placeholder/LSBMA)
breaker.is_placeholder  # True if placeholder/dummy (NONE, NONE-1, NONE-2)
breaker.is_lsbma        # True if physical LSBMA CT accessory
breaker.has_lsbma       # True if placeholder with LSBMA CTs attached
breaker.is_gen2         # True if Gen 2 (supports remote on/off, alias for can_remote_on)

Panel

panel.is_online  # True if online timestamp > offline timestamp

Exceptions

Exception Meaning
LevitonError Base exception for all API errors
LevitonAuthError Authentication failed (wrong credentials)
LevitonTokenExpired Auth token has expired (subclass of LevitonAuthError)
LevitonTwoFactorRequired 2FA code needed (HTTP 406)
LevitonInvalidCode Invalid 2FA code (HTTP 408)
LevitonConnectionError Network or API connection error

Debug Logging

from aioleviton import enable_debug_logging

enable_debug_logging()  # sets aioleviton logger to DEBUG

Roadmap

  • Future compatibility with other Leviton product lines (Decora smart switches, dimmers, etc.)

Disclaimer

This is a do-it-yourself project for Leviton Load Center product users and is not affiliated with, endorsed by, or sponsored by Leviton Manufacturing Co., Inc. "Leviton" and all related product names are trademarks of Leviton Manufacturing Co., Inc. This library interacts with Leviton's cloud services using your own account credentials. Use at your own risk.

License

MIT

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

aioleviton-0.3.3.tar.gz (30.5 kB view details)

Uploaded Source

Built Distribution

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

aioleviton-0.3.3-py3-none-any.whl (19.4 kB view details)

Uploaded Python 3

File details

Details for the file aioleviton-0.3.3.tar.gz.

File metadata

  • Download URL: aioleviton-0.3.3.tar.gz
  • Upload date:
  • Size: 30.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aioleviton-0.3.3.tar.gz
Algorithm Hash digest
SHA256 b5ce4005282234c0ebccf3f312eb99976d414d55c02f2f05ea1bd45ae9dd7b74
MD5 1c9cc12c38c06e20093849c1d081ff84
BLAKE2b-256 c5de201cbf4c997f329250f42482b99f3a06a05c394fd4ffe1dd0ac056b1d168

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioleviton-0.3.3.tar.gz:

Publisher: publish.yml on gtxaspec/aioleviton

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

File details

Details for the file aioleviton-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: aioleviton-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 19.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aioleviton-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c03b830a8778cce6e1bb47f89b42d70f291ea48082f9b1ffe5df8c2c8a1e4cd4
MD5 4d26af7e35af838e4d17a4ce717922cf
BLAKE2b-256 02465f9c7330feef42679b643638fa37cad5d951ab3a6c502ef4f1288f1b0014

See more details on using hashes here.

Provenance

The following attestation bundles were made for aioleviton-0.3.3-py3-none-any.whl:

Publisher: publish.yml on gtxaspec/aioleviton

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