1
0
Fork 0
mirror of synced 2024-09-18 02:18:19 +12:00
appwrite/app/sdks/python/docs/examples/teams/list-teams.md
2020-01-28 15:29:26 +02:00

13 lines
193 B
Markdown

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