A lightweight CryptoPay SDK
Project description
milkpay is a set of lightweight crypto payment system SDKs.
Installation
pip install -U milkpay-cryptopay
Simple example
import asyncio
import logging
import uuid
from typing import Final
from milkpay.cryptopay import Cryptopay
from milkpay.cryptopay.enums import Asset
API_TOKEN: Final[str] = "API_TOKEN_HERE"
async def main() -> None:
logging.basicConfig(level=logging.DEBUG)
async with Cryptopay(
api_token=API_TOKEN,
production=False,
force_detailed_errors=True,
) as cryptopay:
logging.info(
await cryptopay.transfer(
user_id=5945468457,
asset=Asset.USDT,
amount=1.1,
spend_id=int(uuid.uuid4()),
)
)
if __name__ == "__main__":
asyncio.run(main())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
milkpay_cryptopay-1.1.0.tar.gz
(10.0 kB
view hashes)
Built Distribution
Close
Hashes for milkpay_cryptopay-1.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 430cceace00b1257a23e32db85d07dc6c93ccc6df0150fca13f9d14c260397ff |
|
MD5 | 0a212f5c3411a43b9a02d3b6868d276e |
|
BLAKE2b-256 | ce7c687b112380952d5d2ce905b6712965a5b7a0eb3bcd5ccab8b49a7f85b39e |