Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 413 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 413 Bytes

Asaas SDK Python

Sync and Async Asaas SDK written in Python

Sync Example:

from asaas.sdk import Client

client = Client(auth="XXXX")

print(client.customer.list())

Async Example:

import asyncio
from asaas.sdk import AsyncClient


async def main():
    client = AsyncClient(auth="XXX")
    response = await client.customer.list()
    print(response)


asyncio.run(main())