Skip to main content

Python API for sending notifications to Android/Fire TVs

Project description

Android TV / Fire TV Notifications

Python package that interfaces with Notifications for Android TV and Notifications for Fire TV to send notifications to your TV.

Usage

  • Install the application on your TV
  • Get the IP of the TV unit
from notifications_android_tv import Notifications
notify = Notifications("192.168.1.10")
# validate connection
try:
    await notify.async_connect()
expect ConnectError:
    return False
await notify.async_send(
    "message text",
    title="Title text",
)

Optional parameters

  • title: Notification title
  • duration: Display the notification for the specified period. Default is 5 seconds
  • fontsize: Text font size. Use FontSizes class to set the fontsize. Default is FontSizes.MEDIUM
  • position: Notification position. Use Positions class to set position. Default is Positions.BOTTOM_RIGHT.
  • bkgcolor: Notification background color. Use BkgColors class to set color. Default is BkgColors.GREY.
  • transparency: Background transparency of the notification. Use Transparencies class. Default is Transparencies._0_PERCENT.
  • interrupt: Setting it to True makes the notification interactive and can be dismissed or selected to display more details. Default is False
  • icon: Can be str represnting the file path or an ImageUrlSource that includes the url and authentication params to fetch the image from a url.
  • image_file: Can be str represnting the file path or an ImageUrlSource that includes the url and authentication params to fetch the image from a url.

Refer to the example file for setting these parameters directly or from a data dictionary (as documented in https://www.home-assistant.io/integrations/nfandroidtv)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

notifications-android-tv-1.0.0.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

notifications_android_tv-1.0.0-py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page