1
0
Fork 0
mirror of synced 2024-08-22 21:52:17 +12:00
appwrite/app/sdks/python/docs/examples/teams/delete.md
2020-01-30 18:18:59 +02:00

200 B

from appwrite.client import Client from appwrite.services.teams import Teams

client = Client()

(client .set_project('') .set_key('') )

teams = Teams(client)

result = teams.delete('[TEAM_ID]')