Increased build number to 0.2.2.
Fixed some spelling errors and added metadata to package.
Added classifications and project URLs.
This is a very simple python pushover wrapper for sending quick messages from command line scripts.
Download from PyPi:
python3 -m 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
has some simple debugging features:
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
Documentation lives at https://man.sr.ht/~mjorgensen/py_pushover_simple
This project is licensed inder the terms of the MIT license.