A Python library for interacting with Crypto Pay API by CryptoBot
Project description
Crypto Pay API Python
A Python library for interacting with the Crypto Pay API, allowing you to accept payments in cryptocurrency and manage transactions easily.
Official documentation: https://help.crypt.bot/crypto-pay-api
Table of Contents
Installation
You can install the package using pip:
pip install crypto-pay-api-cryptobot
Usage
Getting Started
To start using the crypto_pay library, you first need to create an application and obtain an API token from the Crypto Pay bot. Once you have your token, you can create an instance of the CryptoPay class.
from crypto_pay import CryptoPay
# Your API token
TOKEN = 'YOUR_API_TOKEN'
# Create an instance of CryptoPay
crypto_pay = CryptoPay(TOKEN)
# Example: Get app information
try:
me = crypto_pay.get_me()
print(me)
except Exception as e:
print(f"Error: {e}")
API Methods
Here are some of the key methods you can use with the crypto_pay library:
1. Get App Information
me = crypto_pay.get_me()
print(me)
2. Create an Invoice
You can create a new invoice by specifying the asset and amount:
invoice = crypto_pay.create_invoice('BTC', '0.01', {
'description': 'Payment for services',
'expires_in': 3600 # Invoice expires in 1 hour
})
print(invoice)
3. Delete an Invoice
To delete an invoice, you need to provide the invoice ID:
result = crypto_pay.delete_invoice(invoice_id)
print(result) # Should return True on success
4. Create a Check
You can create a check that can be activated by a user:
check = crypto_pay.create_check('ETH', '0.05', pin_to_user_id=123456789)
print(check)
5. Transfer Coins
To transfer coins from your app's balance to a user, use the transfer method:
transfer_result = crypto_pay.transfer(user_id=123456789, asset='USDT', amount='10.00', spend_id='unique_spend_id')
print(transfer_result)
6. Get Invoices
Retrieve a list of invoices created by your app:
invoices = crypto_pay.get_invoices()
print(invoices)
7. Get Balance
Get the balance of your app:
balance = crypto_pay.get_balance()
print(balance)
8. Get Exchange Rates
Retrieve the exchange rates of supported currencies:
exchange_rates = crypto_pay.get_exchange_rates()
print(exchange_rates)
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contributing
Contributions are welcome! If you have suggestions for improvements or find bugs, please open an issue or submit a pull request.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file crypto_pay_api_cryptobot-1.0.3.tar.gz.
File metadata
- Download URL: crypto_pay_api_cryptobot-1.0.3.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f62fe4924f747468376e6bb09e26e1611c2292f79d09717fff520b889fa51c93
|
|
| MD5 |
47d69407ff4796ec621f42f66e268ea1
|
|
| BLAKE2b-256 |
5f5eff12fd2a62af0e384c2e6f96de4323c1890615f2bbc58d466d59a9c48dd6
|
File details
Details for the file crypto_pay_api_cryptobot-1.0.3-py3-none-any.whl.
File metadata
- Download URL: crypto_pay_api_cryptobot-1.0.3-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf29cab915696158d8cc2a3839c410b77eaf6dad468e4f4da3260fc7492f8c01
|
|
| MD5 |
6a9851e288fadacdfd704589fd78dd9e
|
|
| BLAKE2b-256 |
e681b4135857c3db20ad06cf998c277518143484648573b62b3d525acf45da86
|