skillfed

pysensibo

asyncio-friendly python API for Sensibo

pysensibo v1.2.1 74.1K downloads/30d#14,871 on PyPI12
Permissive license MIT Active released

What it is and what it does

pysensibo is an asyncio-based Python client library for the Sensibo smart climate control API. It wraps HTTP communication with Sensibo's cloud service to let you query and control Sensibo-enabled air conditioning units programmatically. The package was built specifically for Home Assistant integration but works as a standalone library for any Python application that needs to manage Sensibo devices.

The library depends only on aiohttp for async HTTP requests, keeping the installation footprint small. It supports Python 3.11, 3.12, and 3.13, and is marked production-stable. The codebase has been maintained since 2017 with active commits as recently as August 2026, indicating ongoing support for API changes and device compatibility.

Use it for:

  • Integrate Sensibo devices into Home Assistant for centralized smart home control
  • Build custom automation scripts that adjust AC settings based on time, weather, or other triggers
  • Monitor and log Sensibo device status and power consumption over time
  • Create a web dashboard or mobile app that controls multiple Sensibo units remotely
  • Sync Sensibo device state with other smart home platforms or IoT systems

Worth the install?

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

Provides an asyncio-friendly Python API client for controlling Sensibo smart climate devices over the network.

Yes. The package is production-stable, actively maintained, has no known vulnerabilities, and installs with minimal friction. It is the natural choice if you need programmatic control of Sensibo devices in Python—especially for Home Assistant users. The MIT license imposes no practical restrictions.

Install

pysensibo on PyPI

pip

pip install pysensibo

uv

uv add pysensibo

poetry

poetry add pysensibo

Installing pysensibo

Before you install

Low friction installation with a single lightweight dependency (aiohttp). Actively maintained with recent commits and production-stable status; last release was 457 days ago but the repository remains active.

License in practice

MIT license is permissive, allowing use in commercial and private projects with minimal restrictions—only attribution is required.

Quickstart

import asyncio
from pysensibo import SensiboClient
import aiohttp

async def main():
    async with aiohttp.ClientSession() as session:
        client = SensiboClient(api_key="your_key", session=session)
        # Use client to control devices

asyncio.run(main())

Requires Python 3.11 or later; asyncio event loop and aiohttp session setup required for all operations.

Verify before relying

  • Whether the package supports all Sensibo device models or only a subset
  • API rate limits or throttling behavior when controlling multiple devices
  • Whether authentication requires an API key and how to obtain one

Package facts

License MIT (permissive)
Python support supports the current Python release (<4.0,>=3.11)
Install friction low — pure-Python wheel
Runtime dependencies 1 — aiohttp
Maintenance actively maintained — 457 days since the last release
Last repo commit
First released
Downloads 74,143/month — #14,871 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pysensibo-1.2.1-py3-none-any.whl

Keywords: sensibo, api, async, client

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseNatural Language :: EnglishProgramming Language :: Python :: 3Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Topic :: Software Development :: Libraries :: Python Modules

Tags

sensibo api clientasync sensibo controlsmart ac remote pythonsensibo home automationasyncio climate device apisensibo device integrationpython sensibo sdk
smart-homeiot-clientasync-api

More Python Modules packages