Updated SDK examples

This commit is contained in:
Eldad Fux
2020-01-30 18:18:59 +02:00
parent 1beaa237f0
commit d03840bb05
240 changed files with 6299 additions and 1430 deletions
@@ -0,0 +1,13 @@
from appwrite.client import Client
from appwrite.services.users import Users
client = Client()
(client
.set_project('')
.set_key('')
)
users = Users(client)
result = users.create('email@example.com', 'password')