Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 389 Bytes

File metadata and controls

21 lines (16 loc) · 389 Bytes

PinPayments Python

PinPayments-Python is a Python interface to the Pin Payments 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()