File: __init__.py

package info (click to toggle)
notifications-android-tv 1.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 410; makefile: 6; sh: 5
file content (22 lines) | stat: -rw-r--r-- 482 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
"""Library for sending notifications to Android/Fire TVs."""

from .notifier import Notifications
from .helpers import ImageSource, NotificationParams
from .exceptions import (
    ConnectError,
    InvalidImage,
    InvalidImageData,
    InvalidResponse,
    NotificationException,
)

__all__ = [
    "Notifications",
    "ImageSource",
    "NotificationParams",
    "ConnectError",
    "InvalidImage",
    "InvalidImageData",
    "InvalidResponse",
    "NotificationException",
]