karanlyons / chump

The Best API Wrapper for Pushover.

Home Page:https://chump.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chump

PyPI Version License Python Compatibility Documentation

Chump is a fully featured API wrapper for Pushover:

>>> from chump import Application
>>> app = Application('vmXXhu6J04RCQPaAIFUR6JOq6jllP1')
>>> app.is_authenticated
True
>>> user = app.get_user('KAGAw2ZMxDJVhW2HAUiSZEamwGebNa')
>>> user.is_authenticated, user.devices
(True, {'iPhone'})
>>> message = user.send_message("What's up, dog?")
>>> message.is_sent, message.id, str(message.sent_at)
(True, '7LjjD6bK8hgqdK6aJzZUblOPPH9cVpjZ', '2005-10-05 07:50:40+00:00')

Installation

Install chump just like everything else:

$ pip install chump

Documentation

Full documentation is available at ReadTheDocs.

About

The Best API Wrapper for Pushover.

https://chump.readthedocs.io

License:Other


Languages

Language:Python 100.0%