cryptopay

Crypto.com pay module


Keywords
checkout, pypi, api-wrapper, python-api-wrapper, cryptopay, pipoline
License
MIT
Install
pip install cryptopay==0.1.3

Documentation

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)