Async Python wrapper for the Schluter-DITRA-E-WIFI thermostats API.
Project description
Schluter API Python wrapper
An async Python wrapper for the Schluter-DITRA-E-WIFI Wi-Fi Themostat
User
Create a user for your thermostats at https://ditra-heat-e-wifi.schluter.com/
Install
Install the most recent version of the library from Python Package Index
pip install aioschluter
Basic Example
import asyncio
import logging
from aiohttp import ClientError, ClientSession
from aioschluter import (
ApiError,
InvalidUserPasswordError,
InvalidSessionIdError,
SchluterApi,
)
## specify the username and password that you have on the Schluter DITRA-HEATER-E-WIFI
## site at https://ditra-heat-e-wifi.schluter.com/
SCHLUTER_USERNAME = "XXXX"
SCHLUTER_PASSWORD = "XXXX"
logging.basicConfig(level=logging.DEBUG)
async def main():
async with ClientSession() as websession:
try:
schluter = SchluterApi(websession)
sessionid = await schluter.async_get_sessionid(
SCHLUTER_USERNAME, SCHLUTER_PASSWORD
)
thermostats = await schluter.async_get_current_thermostats(sessionid)
except (
ApiError,
ClientError,
InvalidUserPasswordError,
InvalidSessionIdError,
) as error:
print(f"Error: {error}")
else:
for thermostat in thermostats.values():
print(thermostat)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aioschluter-0.1.7.tar.gz
(5.5 kB
view details)
Built Distribution
File details
Details for the file aioschluter-0.1.7.tar.gz
.
File metadata
- Download URL: aioschluter-0.1.7.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e84a622f8077722d9eab9a015c18cdb48e5c8954520eba75fcff61d991fbfb85 |
|
MD5 | 8b41d66ed616a289e1b33673ad0656a0 |
|
BLAKE2b-256 | d3a5f43c2c0361a699f0272201042c436bae114e461a10e435047ca6c1b7cae9 |
File details
Details for the file aioschluter-0.1.7-py3-none-any.whl
.
File metadata
- Download URL: aioschluter-0.1.7-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e05b0ebce60e61258fcd70a4cd20296784d27d4613812e257736c91f1a21897 |
|
MD5 | 354b53318e4de7d6dc33e69a58b59b0e |
|
BLAKE2b-256 | d30e77ef90426dc249e6bb3f62722a11eb251091b74084f037911a092531340b |