--- id: python-homewizard-energy version: "10.2.0" license: Apache-2.0 license_treatment: permissive maintenance: active --- # python-homewizard-energy — Asynchronous Python client for the HomeWizard Energy License: permissive · Maintenance: active · Downloads: 76.0K/mo ## What it is and what it does python-homewizard-energy is an asyncio-based HTTP client for HomeWizard Energy smart meter and energy socket devices. It wraps the HomeWizard Energy REST API, allowing Python applications to query device information, retrieve energy and water usage measurements, read raw P1 telegram data, and control outlets. The package assumes initial device setup is done through the official HomeWizard app; it focuses on runtime communication and control. The library uses aiohttp for async HTTP requests, awesomeversion for version handling, backoff for retry logic, mashumaro for data serialization, and orjson for JSON performance. It targets Python 3.12 or higher and is actively maintained. Typical usage involves instantiating a context manager with a device IP address, then calling methods to interact with the device. Use it for: - Monitor real-time energy consumption and water usage from HomeWizard meters in home automation systems - Retrieve raw P1 telegram data for advanced energy analytics or integration with other monitoring platforms - Control HomeWizard Energy Socket outlets programmatically to switch devices on and off based on energy conditions - Build dashboards or logging systems that periodically fetch device state and measurements via async calls - Integrate HomeWizard devices into broader Python-based smart home orchestration frameworks ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Asyncio client library for communicating with HomeWizard Energy devices over HTTP, enabling queries of device state, energy measurements, and control of outlets. Yes. The package is actively maintained, has low install friction, carries no known vulnerabilities, and uses a permissive license. It directly solves the problem of communicating with HomeWizard Energy devices from Python. Install it if you own or manage HomeWizard Energy hardware and need programmatic access from Python; skip it if you have no HomeWizard devices or prefer synchronous APIs. ## Install pip install python-homewizard-energy uv add python-homewizard-energy poetry add python-homewizard-energy ## Installing python-homewizard-energy Before you install: Low install friction with a pure-Python wheel distribution. Actively maintained with a recent release; last commit on 2026-08-05 and repository not archived. Requires Python 3.12 or higher. License in practice: Apache-2.0 permissive license allows commercial and private use with minimal restrictions; suitable for most integration scenarios. Quickstart: pip install python-homewizard-energy import asyncio async def main(): from python_homewizard_energy import HomeWizardEnergyV1 async with HomeWizardEnergyV1(host="192.168.1.123") as api: device_info = await api.device() measurement = await api.measurement() print(measurement.energy_import_kwh) asyncio.run(main()) Requires Python 3.12 or higher; device must be on the same network and accessible at its IP address. Verify before relying: - Whether the package supports HomeWizard Energy device models beyond those documented in the official API reference - Performance characteristics when polling multiple devices or high-frequency measurement queries - Retry and timeout behavior details beyond what backoff dependency suggests ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 76.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags homewizard energy api client, asyncio smart meter integration, energy monitoring python, p1 meter data retrieval, home automation device control, homewizard python library, async energy device communication, smart-home, energy-monitoring, asyncio [View on SkillFed](https://skillfed.io/packages/python-homewizard-energy) · [View on PyPI](https://pypi.org/project/python-homewizard-energy/)