Metadata-Version: 2.0
Name: pinpayments
Version: 0.1.1
Summary: A Python interface to the Pin Payments API.
Home-page: https://github.com/MattHealy/pinpayments-python
Author: Matt Healy
Author-email: healmatt@gmail.com
License: MIT
Keywords: pinpayments pin payments
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Financial
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: requests (>=2.9.1)

PinPayments Python
=======================

PinPayments-Python is a Python interface to the [Pin Payments](https://pin.net.au/docs/api)
API

## Installation:

```
pip install pinpayments
```

## Quickstart:

```
python
>>> from pinpayments import PinPayments
>>> api_secret = <api_secret>
>>> pin = PinPayments(api_secret = api_secret, test = False)
>>> customers = pin.getCustomers()
```


