Python SDK
The official Python SDK is currently in development. It will provide an ergonomic client for interacting with the AsyncQueue API.
In the meantime, you can use the REST API directly with any HTTP library like requests or httpx.
Preview
Section titled “Preview”from asyncqueue import AsyncQueue
client = AsyncQueue(api_key="aq_live_...")
task = client.tasks.create( queue="emails", webhook_url="https://your-app.com/webhooks/send-email", payload={ "template": "welcome", },)
print(f"Task created: {task.id}")Want early access? Contact us to join the beta.