py-pushover-simple

A wrapper for sending push notifications with Pushover


Keywords
pushover, python
License
MIT
Install
pip install py-pushover-simple==0.5.0

Documentation

py_pushover_simple

PyPI version

This is a very simple python pushover wrapper for sending quick messages from command line scripts.

Installation

  1. Obtain the code:

    Download from PyPi (recommended):

    python3 -m pip install py-pushover-simple

    or, clone the repository:

    git clone https://github.com/prplecake/py_pushover_simple
  2. 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.

Usage

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

Resources

Additional documentation may be found in the wiki.

This project is licensed under the terms of the MIT license.