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.
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
python3 -m pip install python-homewizard-energyimport 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())Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
- Python 3.12 or higher
- Poetry
poetry install poetry shell pre-commit installYou 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.