1
0
Fork 0
mirror of synced 2024-07-16 03:46:02 +12:00
appwrite/app/sdks/python/docs/examples/teams/list-teams.md

14 lines
193 B
Markdown
Raw Normal View History

2020-01-29 02:29:26 +13:00
from appwrite.client import Client
from appwrite.services.teams import Teams
client = Client()
(client
.set_project('')
.set_key('')
)
teams = Teams(client)
result = teams.list_teams()