Skip to content

cryptounifier/python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CryptoUnifier Python SDK

A simple Python SDK for interacting with Crypto Unifier API V1.

Installation

You can install the package via pip:

pip require cryptounifier

Usage

Using the Wallet API client

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)

Using the Merchant API client

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)

License

The MIT License (MIT). Please see License File for more information.

About

Python library for CryptoUnifier API V1.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages