Metadata-Version: 2.1
Name: TeleCryptoBot
Version: 1.0
Summary: Библиотека для удобного использования API CryptoPay
Home-page: https://github.com/vh1dz/TeleCryptoBot
Author: vh1dz
Author-email: vh1dz@vh1dz.ru
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## **Module CryptoBot API(non-official)**
**Docs:** https://help.crypt.bot/crypto-pay-api

**Install**
``` bash
pip install TeleCryptoBot
```

**Examples**
``` python
import TeleCryptoBot

crypto = TeleCryptoBot.TeleCryptoBot("0000:qwertyuiop")

info_profile = crypto.getMe()
balance = crypto.getBalance()

print(info_profile, balance, sep='\n')
```
``` python
import TeleCryptoBot

crypto = TeleCryptoBot.TeleCryptoBot("0000:qwertyuiop")

invoice = crypto.createInvoice(asset="USDT", amount=1.0)
print(invoice)
```
