SimplePush

Send SimplePush notifications

Minimal example:

>>> from notifiers import get_notifier
>>> simplepush = get_notifier('simplepush')
>>> simplepush.notify(message='Hi!', key='KEY')

Full schema:

additionalProperties: false
properties:
  event:
    title: Event ID
    type: string
  key:
    title: your user key
    type: string
  message:
    title: your message
    type: string
  title:
    title: message title
    type: string
required:
- key
- message
type: object