Skip to main content

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.5.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

aioschluter-0.1.5-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file aioschluter-0.1.5.tar.gz.

File metadata

  • Download URL: aioschluter-0.1.5.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for aioschluter-0.1.5.tar.gz
Algorithm Hash digest
SHA256 aadbec96fc87b93732372b647764a5a8bf0d92a4960281c090bebd221b2ac5e8
MD5 7f2744b511b46216ecb3499534455047
BLAKE2b-256 d2b6dccc977c21faaf20378c317b24b801555268b763fd801a053250b1aaf754

See more details on using hashes here.

File details

Details for the file aioschluter-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: aioschluter-0.1.5-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

Hashes for aioschluter-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 244c24caa9fba35cd387f05286a5df65120e303ab71e97d828b67b5bc603b2ea
MD5 4a6dbdefa76e883cf12785400a481dcb
BLAKE2b-256 ad3a4b3cf048fc54ee656905d481cab36ba5dfe88f3c63d392e46a77f3fa67b5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page