pushoverwrap is a simple Pushover API wrapper.
Install pushoverwrap using pip
pip install pushoverwrap
The most simple example:
from pushoverwrap import Pushover
push = Pushover(
app_token='APP_TOKEN',
user_token='USER_TOKEN',
)
push.send_msg('message content')
A more complex example, with title and image
push.send_msg('message content',
title='message title',
image='local/path/image.jpeg'
)