# Wallet Python Library

Python library for using the Airship Wallet API.
## Resources

- [GitHub Repo](https://github.com/urbanairship/reach-python-library)
- [Python Package Index (PyPI)](https://pypi.python.org/pypi/uareach)
- [Wallet API Reference](https://www.airship.com/docs/developer/rest-api/wallet/)
- [Python Wallet Library API Reference](https://www.airship.com/docs/reference/libraries/wallet/latest)
   > **Important:** Airship is no longer actively developing this library but will respond to feature requests, issues, and pull requests submitted to the [Airship Support site](https://support.airship.com). This library provides sample code, and Airship makes no guarantees as to completeness or regularity of updates.

## Installation

Install using `pip`:

```bash
pip install urbanairship
```


## Example usage

**Basic usage example**

```python
import uareach as ua

client = ua.Reach('email', 'wallet_key')

my_pass = ua.get_pass(client, pass_id=12345)
```

