flexget.components.notify.notifiers.toast module#

class flexget.components.notify.notifiers.toast.NotifyToast[source]#

Bases: object

Send messages via local notification system.

You must have a notification system like dbus for Linux. Preliminary support for Windows notifications. Not heavily tested yet.

Examples:

notify:
  entries:
    via:
      - toast: yes

notify:
  entries:
    via:
      - toast:
          timeout: 5
linux_notify(title, message, config)[source]#
mac_notify(title, message, config)[source]#
notify(title, message, config)#
prepare_config(config)[source]#
windows_notify(title, message, config)[source]#
schema = {'anyOf': [{'enum': [True], 'type': 'boolean'}, {'additionalProperties': False, 'properties': {'timeout': {'type': 'integer'}, 'url': {'type': 'string'}}, 'type': 'object'}]}#
flexget.components.notify.notifiers.toast.register_plugin()[source]#