mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
14 lines
197 B
Markdown
14 lines
197 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.create('[NAME]')
|