File: __init__.py

package info (click to toggle)
python-aioairq 0.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: python: 594; makefile: 5
file content (27 lines) | stat: -rw-r--r-- 588 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""air-Q library."""

__author__ = "Daniel Lehmann"
__credits__ = "Corant GmbH"
__email__ = "daniel.lehmann@corant.de"
__url__ = "https://www.air-q.com"
__license__ = "Apache License 2.0"
__version__ = "0.4.2"
__all__ = [
    "AirQ",
    "DeviceInfo",
    "NightMode",
    "DeviceLedTheme",
    "DeviceLedThemePatch",
    "InvalidAirQResponse",
    "InvalidAuth",
    "InvalidIpAddress",
]

from aioairq.core import (
    AirQ,
    DeviceInfo,
    DeviceLedTheme,
    DeviceLedThemePatch,
    NightMode,
)
from aioairq.exceptions import InvalidAirQResponse, InvalidAuth, InvalidIpAddress