Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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())

About

The unofficial Asaas SDK Payments in Python [UNDER DEVELOPMENT]

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages