aiosend
Introduction¶
aiosend is a synchronous & asynchronous Crypto Pay API client.
See also
aiosend has community chat on Telegram
Features¶
supports both synchronous and asynchronous use
provides invoice polling and check polling
provides webhook handling
fully typed, has literal type hints and warnings
uses powerful magic filters from aiogram 3.x
provides dependency injection
provides additional tool methods
provides shortcut methods for types
Quick start¶
import asyncio
from aiosend import CryptoPay
async def main() -> None:
cp = CryptoPay(token="TOKEN")
app = await cp.get_me()
print(app.name) # Your App's Name
if __name__ == "__main__":
asyncio.run(main())