1
0
Fork 0
mirror of synced 2024-09-12 23:53:15 +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]')