Airship Wallet Python Library

Installation

You can install the library via pip:

$ pip install uareach

Logging

uareach uses the standard logging module for integration into an application’s existing logging. If you do not have logging configured otherwise, your application can set it up like so:

import logging
logging.basicConfig()

If you’re having trouble with the Wallet API, you can turn on verbose debug logging.

logging.getLogger('uareach').setLevel(logging.DEBUG)

As of Python 2.7, DeprecationWarning warnings are silenced by default. To enable them, use the warnings module:

import warnings
warnings.simplefilter('default')

Development

The library source code is available on GitHub. Please feel free to submit a pull request.

Tests can be run with nose:

$ nosetests