Metadata-Version: 2.4
Name: homewizard-kitchen
Version: 0.4.3
Summary: Manage your Homewizard Kitchen Kettle using Python
Author-email: Lesley De Keyser <me@lesley.eu>
Project-URL: Homepage, https://github.com/lesleyxyz/python-homewizard-kitchen
Project-URL: Bug Tracker, https://github.com/lesleyxyz/python-homewizard-kitchen/issues
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: websockets>=15.0
Requires-Dist: httpx>=0.28.0
Requires-Dist: jsonpatch>=1.33
Dynamic: license-file

# python-homewizard-kitchen
This package connects to the HomeWizard Kitchen's websocket to get & update a device status.
This project currently only implements the Kettle device.
Tested on a HomeWizard Kettle 1.4,HWK-KTL 1.07

Want to integrate this into HomeAssistant? Checkout the [HomeAssistant HACS Integration](https://github.com/lesleyxyz/hass-homewizard-kettle/)

## Installation
```bash
pip install homewizard-kitchen
```

## Usage
See [example.py](https://github.com/lesleyxyz/python-homewizard-kitchen/blob/main/example.py)

Afterwards you can use the Kettle model to update & retrieve data.

## Building
```bash
pip install build twine
python -m build
twine upload dist/*
```
