Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 512 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 512 Bytes

pushoverwrap is a simple Pushover API wrapper.

Installation

Install pushoverwrap using pip

pip install pushoverwrap

Usage

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'
)