Quickstart¶
Install¶
pip install intents-py
Usage¶
import asyncio
from intents import IntentsClient
async def main():
async with IntentsClient() as client:
tokens = await client.get_tokens()
print(tokens)
asyncio.run(main())
See the API reference for the full surface.