This is a very simple python pushover wrapper for sending quick messages from command line scripts.
Obtain the code:
Download from PyPi:
pip install py-pushover-simple
Add it to your script:
from py_pushover_simple import pushover
def send_message(message):
p = pushover.Pushover()
p.user = 'user key'
p.token = 'app token'
p.sendMessage(message)
For a working demo, see ippush.py from the ip_push project.
py_pushover_simple
can be used on the command line:
For a full list of arguments:
$ python -m py_pushover_simple.pushover -h
usage: pushover.py [-h] [-u <string>] [-t <string>]
optional arguments:
-h, --help show this help message and exit
-u <string> pushover user token
-t <string> pushover app token
Additional documentation may be found in the wiki.
This project is licensed under the terms of the MIT license.