📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP

aioschluter

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aioschluter

Async Python wrapper for the Schluter-DITRA-E-WIFI thermostats API.

0.1.9
Maintainers
1

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()

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts