File: __init__.py

package info (click to toggle)
python-songpal 0.16.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,516 kB
  • sloc: python: 2,097; makefile: 7
file content (18 lines) | stat: -rw-r--r-- 396 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# flake8: noqa
from importlib.metadata import version

from songpal.common import SongpalException
from songpal.device import Device
from songpal.notification import (
    ConnectChange,
    ContentChange,
    Notification,
    NotificationChange,
    PowerChange,
    SettingChange,
    SoftwareUpdateChange,
    VolumeChange,
    ZoneActivatedChange,
)

__version__ = version("python-songpal")