skillfed

AIOSomecomfort

A client for Honeywell's US-based cloud devices

aiosomecomfort v0.0.38 78.2K downloads/30d#14,459 on PyPI8
Permissive license MIT Active released

What it is and what it does

AIOSomecomfort is an AsyncIO-based Python client for Honeywell's US cloud thermostat platform. It wraps the Honeywell API to let you query and control supported thermostats programmatically—reading current temperature and humidity, adjusting heating and cooling setpoints, changing fan and system modes, and managing hold schedules. The package is built on aiohttp for non-blocking network I/O, making it suitable for integration into async applications like home automation systems or monitoring daemons.

The package includes a command-line test tool demonstrating all major operations: login, device discovery, temperature queries, setpoint adjustments, and mode changes. It is actively maintained but still in beta status. The main constraint is that it only works with US-based Honeywell accounts and devices; EU models are explicitly unsupported.

Use it for:

  • Integrate thermostat control into a home automation platform to read and adjust heating and cooling setpoints.
  • Build a monitoring daemon that periodically polls thermostat temperature and humidity to log energy usage or trigger alerts.
  • Automate seasonal setpoint changes or time-based hold schedules without manual Honeywell app interaction.
  • Query multiple thermostats across a property to synchronize settings or detect equipment failures.
  • Create a custom CLI or web dashboard for remote thermostat management without relying on Honeywell's official app.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

AsyncIO client for querying and controlling Honeywell US-model thermostats through their cloud API, supporting temperature setpoints, fan modes, system modes, and hold scheduling.

Yes, if you own a US-based Honeywell thermostat and need programmatic control. Low install friction, permissive license, active maintenance, and no known vulnerabilities make it a safe choice. The beta status suggests it works but may lack polish; verify it supports your specific thermostat model before committing to a production integration.

Install

aiosomecomfort on PyPI

pip

pip install aiosomecomfort

uv

uv add aiosomecomfort

poetry

poetry add aiosomecomfort

Installing AIOSomecomfort

Before you install

Low install friction with only two runtime dependencies (aiohttp and prettytable). Active maintenance with a recent release on 2026-07-09 and last commit on 2026-07-23, though the repository has modest activity.

License in practice

MIT license is permissive, allowing use in commercial and private projects with minimal restrictions; attribution is required but no copyleft obligations apply.

Quickstart

pip install AIOSomecomfort

from aiosomecomfort import client
# Requires Honeywell account credentials and device ID
await client.login(username, password)
temp = await device.get_current_temperature()

Requires valid Honeywell US account credentials and a supported US-model thermostat; EU models are not supported.

Verify before relying

  • Whether the package supports modern Python versions or has specific version constraints not listed in requires_python.
  • Whether authentication persists across sessions or requires re-login for each script run.
  • Real-world reliability and response times when controlling multiple thermostats or frequent polling.
  • Whether the package handles API rate limits or connection failures gracefully.
  • Specific thermostat models and firmware versions confirmed to work with this client.

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 2 — aiohttp, prettytable
Maintenance actively maintained — 36 days since the last release
Last repo commit
First released
Downloads 78,222/month — #14,459 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: aiosomecomfort-0.0.38-py3-none-any.whl

Development Status :: 4 - BetaIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python

Tags

honeywell thermostat api clientasyncio thermostat controlhoneywell cloud thermostatsmart thermostat pythonhvac system controltemperature setpoint managementthermostat automation
home-automationiot-device-controlasyncio

More WWW/HTTP packages