Control hOn devices with python
Project description
This python package is unofficial and is not related in any way to Haier. It was developed by reversed engineered requests and can stop working at anytime!
pyhOn
Control your Haier appliances with python!
Quick overview
To see the available options of the appliances from your Haier Account, use the commandline-tool pyhOn
$ pyhOn --user example@mail.com --password pass123
========== Waschmaschine ==========
commands:
pauseProgram: pauseProgram command
resumeProgram: resumeProgram command
startProgram: startProgram command
stopProgram: stopProgram command
data:
actualWeight: 0
airWashTempLevel: 0
airWashTime: 0
antiAllergyStatus: 0
...
Python-API
List devices
import asyncio
from pyhon import HonConnection
async def devices_example():
async with HonConnection(USER, PASSWORD) as hon:
for device in hon.devices:
print(device.nick_name)
asyncio.run(devices_example())
Execute a command
async with HonConnection(USER, PASSWORD) as hon:
washing_machine = hon[0]
pause_command = washing_machine.commands["pauseProgram"]
await pause_command.send()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyhOn-0.2.0.tar.gz
(8.4 kB
view details)
Built Distribution
pyhOn-0.2.0-py3-none-any.whl
(10.4 kB
view details)
File details
Details for the file pyhOn-0.2.0.tar.gz
.
File metadata
- Download URL: pyhOn-0.2.0.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eae41617d626b96e877b9cbcb3a77649a156423aad54b17e5a96f4b1ddc84187 |
|
MD5 | bd207cef22b0d08f6e9e0be8eaffccce |
|
BLAKE2b-256 | 3fd264c473d3c465341f14997b018711de860c631dc7b006bf97da744a154c96 |
File details
Details for the file pyhOn-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: pyhOn-0.2.0-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c5a97fe60c6fd805f8cfeed3fb9f2943434a6fa1fd5625efef0bf3e7bf21f27 |
|
MD5 | 808f0e08c65b3dbc14916dca7b5bd8a4 |
|
BLAKE2b-256 | 2690f947689e975972939dccc24a800b5e9649281c61d6c0660542ec5963f38e |