A simple Python SDK for interacting with Crypto Unifier API V1.
You can install the package via pip:
pip require cryptounifier
You can use the WalletAPI
class for convenient access to API methods. Some are defined in the code:
from cryptounifier import MerchantAPI
client = WalletAPI("WALLET_KEY", "SECRET_KEY", "btc")
balance = client.getBalance()
print(balance)
depositAddresses = client.getDepositAddresses()
print(depositAddresses)
You can use the MerchantAPI
class for convenient access to API methods. Some are defined in the code:
from cryptounifier import MerchantAPI
client = MerchantAPI("MERCHANT_KEY", "SECRET_KEY")
invoice = client.createInvoice(["btc", "bch", "eth"])
print(invoice)
The MIT License (MIT). Please see License File for more information.