File: __init__.py

package info (click to toggle)
python-toonapi 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 224 kB
  • sloc: python: 708; xml: 325; makefile: 97
file content (20 lines) | stat: -rw-r--r-- 524 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Asynchronous Python client for Quby."""

from .const import (  # noqa
    ACTIVE_STATE_AWAY,
    ACTIVE_STATE_COMFORT,
    ACTIVE_STATE_HOLIDAY,
    ACTIVE_STATE_HOME,
    ACTIVE_STATE_NONE,
    ACTIVE_STATE_OFF,
    ACTIVE_STATE_SLEEP,
    BURNER_STATE_OFF,
    BURNER_STATE_ON,
    BURNER_STATE_PREHEATING,
    BURNER_STATE_TAP_WATER,
    PROGRAM_STATE_OFF,
    PROGRAM_STATE_ON,
    PROGRAM_STATE_OVERRIDE,
)
from .models import Agreement, Status  # noqa
from .toon import Toon, ToonConnectionError, ToonError  # noqa