Metadata-Version: 1.1
Name: chump
Version: 1.3.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://badge.fury.io/py/chump.png
        	:target: http://badge.fury.io/py/chump
        
        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, set([u'iPhone']))
        	>>> message = user.send_message("What's up, dog?")
        	>>> message.is_sent, message.id, str(message.sent_at)
        	(True, u'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.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.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
