Async Client
dazpy.aio mirrors DazClient’s full method surface as
async def methods, backed by httpx.AsyncClient. Requires the
optional httpx dependency: pip install dazpy[aio].
from dazpy.aio import AsyncDazClient
async def main():
async with AsyncDazClient() as client:
result = await client.execute("1 + 1;")
print(result.value)