mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Updated SDK examples
This commit is contained in:
@@ -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')
|
||||
Reference in New Issue
Block a user