1
0
Fork 0
mirror of synced 2024-09-13 08:03:33 +12:00
appwrite/app/sdks/python/docs/examples/teams/list.md
2020-02-15 19:53:12 +02:00

13 lines
233 B
Markdown

from appwrite.client import Client
from appwrite.services.teams import Teams
client = Client()
(client
.set_project('5df5acd0d48c2')
.set_key('919c2d18fb5d4...a2ae413da83346ad2')
)
teams = Teams(client)
result = teams.list()