Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 642 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 642 Bytes

cryptopay

Python API wrapper for Crypto.com Pay Checkout

Travis (.com) Codecov PyPI - Downloads PyPI

Installation

  • From pypi: pip3 install cryptopay
  • From GitHub: Clone our repository and python3 setup.py install

Usage

from pprint import pprint
from cryptopay import Client

client = Client()
response = client.get_payments()
payments = response.json()
pprint(payments)