Metadata-Version: 1.1
Name: uareach
Version: 0.1.0
Summary: Python package for using the Urban Airship Reach API
Home-page: http://urbanairship.com/
Author: Urban Airship
Author-email: support@urbanairship.com
License: BSD License
Description: About
        =====
        
        The Urbanairship ``uareach`` (formerly known as ``wallet``) library is a Python library for
        using the `Urban Airship Reach <http://urbanairship.com/>`__ web service API.
        
        Version 0.1.0 is a beta release.  Please visit `Urban Airship Support
        <https://support.urbanairship.com/>`_ with questions or comments.
        
        Requirements
        ============
        
        As of version 0.1.0, Python 2.7 is required.
        
        For tests, ``uareach`` also needs `Mock <https://github.com/testing-cabal/mock>`_.
        
        Running Tests
        =============
        
        To run tests, run:
        
            $ nosetests
        
        Usage
        =====
        
        To get started, simply import the library and set up a client:
        
        .. sourcecode:: python
        
           import uareach as ua
        
        
           client = ua.Reach('email', 'wallet_key')
        
        
           # Example: getting a pass
           my_pass = ua.get_pass(client, pass_id=12345)
        
        For more details on using the library, please see the `full documentation
        <http://docs.urbanairship.com/reference/libraries>`__, as well as the
        `Urban Airship API Documentation <http://docs.urbanairship.com/api/wallet.html>`__.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
