Metadata-Version: 1.1
Name: chump
Version: 1.5.2
Summary: A fully featured API wrapper for Pushover.
Home-page: https://github.com/karanlyons/chump
Author: Karan Lyons
Author-email: karan@karanlyons.com
License: Copyright 2013 Karan Lyons

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

	http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Description: #####
        Chump
        #####
        
        .. image:: https://img.shields.io/pypi/v/chump.svg
        	:target: https://pypi.python.org/pypi/chump
        	:alt: PyPI Version
        
        .. image:: https://img.shields.io/badge/docs-latest-blue.svg
        	:target: https://chump.readthedocs.org/en/latest/
        	:alt: Documentation Status
        
        Chump is an Apache2 Licensed, 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.org/en/latest/>`_.
        
        
        History
        =======
        
        1.5.2 (10/15/2016)
        ------------------
        
         - Exception logging bugfixes.
         - Dropped support for Python 2.6.
         - General code formatting improvements.
        
        
        1.5.1 (03/05/2015)
        ------------------
        
         - Regression fixes.
        
        
        1.5.0 (03/05/2015)
        ------------------
        
         - Use unicode exclusively.
         - Update length limits on message strings.
         - Add support for HTML messages.
         - Improve timezone support when pytz is unavailable.
         - Remove requests dependency.
         - Improve documentation.
        
        
        1.4.0 (05/31/2014)
        ------------------
        
         - Add new Pushover priority: LOWEST.
         - Add Application.{limit,remaining,reset} to track message allotment.
         - Fix title and message length validation.
        
        
        1.3.2 (05/16/2014)
        ------------------
        
         - Fix dependency issues when installing.
        
        
        1.3.1 (09/30/2013)
        ------------------
        
         - Updated authentication checks for new API responses.
        
        
        1.3.0 (09/01/2013)
        ------------------
        
         - Added Python 2.6 support.
        
        
        1.2.1 (09/01/2013)
        ------------------
        
         - Bugfixes.
        
        
        1.2.0 (08/30/2013)
        ------------------
        
         - Renamed classes.
        
        
        1.1.0 (08/30/2013)
        ------------------
        
         - Added Python 3 support.
        
        
        1.0.0 (08/30/2013)
        ------------------
        
         - API overhaul and "completion".
        
        
        0.1.0 (08/28/2013)
        ------------------
        
         - Initial release.
        
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.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
