appwrite/app/sdks/python/docs/examples/teams/update.md

14 lines
210 B
Markdown
Raw Normal View History

2020-01-28 13:29:26 +00:00
from appwrite.client import Client
from appwrite.services.teams import Teams
client = Client()
(client
.set_project('')
.set_key('')
)
teams = Teams(client)
2020-01-30 16:18:59 +00:00
result = teams.update('[TEAM_ID]', '[NAME]')