A Python library to interact with the API behind the myVAILLANT app
Project description
myPyllant
A Python library to interact with the API behind the myVAILLANT app.
Not affiliated with Vaillant, the developers take no responsibility for anything that happens to your Vaillant devices because of this library.
Install and Test
pip install myPyllant
python3 -m myPyllant.export user password
# See python3 -m myPyllant.export -h for more options
The --data
argument exports historical data of the devices in your system.
Without this keyword, information about your system will be exported as JSON.
Usage
import argparse
import asyncio
from datetime import datetime, timedelta
from myPyllant.api import MyPyllantAPI
parser = argparse.ArgumentParser(description="Export data from myVaillant API .")
parser.add_argument("user", help="Username (email address) for the myVaillant app")
parser.add_argument("password", help="Password for the myVaillant app")
async def main(user, password):
async with MyPyllantAPI(user, password) as api:
async for system in api.get_systems():
print(await api.set_holiday(system, datetime.now()))
print(
await api.set_holiday(
system, datetime.now(), datetime.now() + timedelta(days=1)
)
)
print(await api.cancel_holiday(system))
print(await api.boost_domestic_hot_water(system.domestic_hot_water[0]))
print(await api.cancel_hot_water_boost(system.domestic_hot_water[0]))
print(
await api.set_domestic_hot_water_temperature(
system.domestic_hot_water[0], 46
)
)
print(await api.set_set_back_temperature(system.zones[0], 15.5))
print(await api.quick_veto_zone_temperature(system.zones[0], 21, 5))
print(await api.cancel_quick_veto_zone_temperature(system.zones[0]))
if __name__ == "__main__":
args = parser.parse_args()
asyncio.run(main(args.user, args.password))
Notes
- Auth is loosely based on https://github.com/TA2k/ioBroker.vaillant
- Most API endpoints are reverse-engineered from the myVaillant app, using https://github.com/mitmproxy/mitmproxy
- Tested on a Vaillant aroTHERM plus heatpump with sensoCOMFORT VRC 720 and sensoNET VR 921
- I'm happy to accept PRs, if you can test them yourself
- Setting weekly time tables for heating and domestic hot water is still missing
Logo based on Hase Icons erstellt von Freepik - Flaticon & Ouroboros Icons erstellt von Freepik - Flaticon.
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
mypyllant-0.0.8.tar.gz
(55.1 kB
view hashes)
Built Distribution
mypyllant-0.0.8-py3-none-any.whl
(10.6 kB
view hashes)
Close
Hashes for mypyllant-0.0.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42ec1fe92a3e42c928425b33dd229329add3d7020ee7241e0dc37a590b1661fa |
|
MD5 | 64e1ba63afb4ced3b9c3b28712aacc2b |
|
BLAKE2b-256 | d3c668b314bf5cd664534676a24100d5841f12bb911b100380b1bb70e7d0d9d0 |