flexget.components.notify.notifiers.notifymyandroid module#

class flexget.components.notify.notifiers.notifymyandroid.NotifyMyAndroidNotifier[source]#

Bases: object

Send a Notifymyandroid notification.

Example:

notify:
  entries:
    via:
      - notifymyandroid:
          apikey: xxxxxxx
          [application: application name, default FlexGet]
          [event: event title, default New Release]
          [priority: -2 - 2 (2 = highest), default 0]

Configuration parameters are also supported from entries (eg. through set).

notify(title, message, config)[source]#

Send a Notifymyandroid notification.

schema = {'additionalProperties': False, 'properties': {'api_key': {'oneOf': [{'items': {'title': 'single value', 'type': 'string'}, 'minItems': 1, 'title': 'multiple values', 'type': 'array', 'uniqueItems': False}, {'title': 'single value', 'type': 'string'}]}, 'application': {'default': 'FlexGet', 'type': 'string'}, 'developer_key': {'type': 'string'}, 'html': {'type': 'boolean'}, 'priority': {'maximum': 2, 'minimum': -2, 'type': 'integer'}, 'url': {'type': 'string'}}, 'required': ['api_key'], 'type': 'object'}#
flexget.components.notify.notifiers.notifymyandroid.register_plugin()[source]#