Metadata-Version: 2.1
Name: cryptounifier
Version: 1.0.4
Summary: CryptoUnifier API Python Integration.
Home-page: https://github.com/cryptounifier/python-sdk
Author: https://cryptounifier.io/
License: MIT License
Project-URL: Bug Tracker, https://github.com/cryptounifier/python-sdk/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.md

# CryptoUnifier Python SDK

A simple Python SDK for interacting with [Crypto Unifier](https://cryptounifier.io) API V1.

## Installation

You can install the package via pip:

```bash
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:

```py
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:

```py
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](LICENSE.md) for more information.
