Metadata-Version: 2.1
Name: chump
Version: 1.6.0
Summary: A fully featured API wrapper for Pushover.
Home-page: https://github.com/karanlyons/chump
Author: Karan Lyons
Author-email: karan@karanlyons.com
License: Apache 2.0
Project-URL: Source, https://github.com/karanlyons/chump
Project-URL: Documentation, https://chump.readthedocs.io
Project-URL: Tracker, https://github.com/karanlyons/chump/issues
Description: #####
        Chump
        #####
        
        .. image:: https://img.shields.io/pypi/v/chump.svg
        	:target: https://pypi.org/project/chump
        	:alt: PyPI Version
        
        .. image:: https://img.shields.io/pypi/l/chump.svg
        	:target: https://pypi.org/project/chump
        	:alt: License
        
        .. image:: https://img.shields.io/pypi/pyversions/chump.svg
        	:target: https://pypi.org/project/chump
        	:alt: Python Compatibility
        
        .. image:: https://img.shields.io/badge/docs-latest-blue.svg
        	:target: https://chump.readthedocs.io
        	:alt: Documentation
        
        Chump is a fully featured API wrapper for `Pushover <https://pushover.net>`_:
        
        .. code-block:: pycon
        
        	>>> 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:
        
        .. code-block:: bash
        
        	$ pip install chump
        
        
        Documentation
        =============
        
        Full documentation is available at
        `ReadTheDocs <https://chump.readthedocs.io>`_.
        
Keywords: pushover api push notifications
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=2.7
Description-Content-Type: text/x-rst
