Metadata-Version: 2.4 Name: python-homewizard-energy Version: 10.1.0 Summary: Asynchronous Python client for the HomeWizard Energy License: Apache-2.0 License-File: LICENSE Author: DCSBL Maintainer: DCSBL Requires-Python: >=3.12,<4.0 Classifier: License :: OSI Approved :: Apache Software License Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Programming Language :: Python :: 3.14 Requires-Dist: aiohttp (>=3.0.0) Requires-Dist: awesomeversion (>=24.6.0) Requires-Dist: backoff (>=2.2.1,<3.0.0) Requires-Dist: mashumaro (>=3.15,<4.0) Requires-Dist: multidict (>=6.0.5,<7.0.0) Requires-Dist: orjson (>=3.10,<4.0) Project-URL: Bug Tracker, https://github.com/homewizard/python-homewizard-energy/issues Project-URL: Changelog, https://github.com/homewizard/python-homewizard-energy/releases Project-URL: Documentation, https://github.com/homewizard/python-homewizard-energy Project-URL: Homepage, https://github.com/homewizard/python-homewizard-energy Project-URL: Repository, https://github.com/homewizard/python-homewizard-energy Description-Content-Type: text/markdown # HomeWizard Energy: `python-homewizard-energy` Asyncio package to communicate with HomeWizard Energy devices This package is aimed at basic control of the device. Initial setup and configuration is assumed to done with the official HomeWizard Energy app. [![Testing](https://github.com/homewizard/python-homewizard-energy/actions/workflows/tests.yaml/badge.svg?branch=main)](https://github.com/homewizard/python-homewizard-energy/actions/workflows/tests.yaml) [![Codecov](https://img.shields.io/codecov/c/github/homewizard/python-homewizard-energy)](https://app.codecov.io/gh/homewizard/python-homewizard-energy) [![Release](https://img.shields.io/github/v/release/homewizard/python-homewizard-energy)](https://github.com/homewizard/python-homewizard-energy/releases) # Usage Instantiate the HomeWizard class and access the API. For more details on the API see the API documentation for HomeWizard Energy on https://api-documentation.homewizard.com ## Installation ```bash python3 -m pip install python-homewizard-energy ``` ## Example ### API v1 ```python import asyncio from homewizard_energy import HomeWizardEnergyV1 IP_ADDRESS = "192.168.1.123" async def main(): async with HomeWizardEnergyV1(host=IP_ADDRESS) as api: # Get device information, like firmware version print(await api.device()) # Get measurements, like energy or water usage measurement = await api.measurement() print(measurement.energy_import_kwh) # Example of getting raw telegram data telegram = await api.telegram() print(telegram) # Raw P1 meter data # Get all data and remap v1 data to new v2 structure print(await api.combined()) # Turn on the Energy Socket outlet await api.state(power_on=True) asyncio.run(main()) ``` # Development and contribution Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. ## Requirements - Python 3.12 or higher - [Poetry](https://python-poetry.org/docs/#installing-with-pipx) ## Installation and setup ```bash poetry install poetry shell pre-commit install ``` You can now start developing. The pre-commit hooks will run automatically when you commit your changes. Please note that a failed pre-commit hook will prevent you from committing your changes. This is to make sure that the code is formatted correctly and that the tests pass.