Path: blob/master/Appwrite/Appwrite_User_Authentication.ipynb
2973 views
Kernel: Python 3
Appwrite - User Authentication
Tags: #appwrite #python #sdk #authentication #user #create
Author: SaiKiran M
Last update: 2023-10-08 (Created: 2023-10-08)
Description: This notebook will demonstrate how to use the Appwrite Python SDK to create a authentication and have options to create_user
, delete_user
, list_all_users
as individual routines. It is useful for organizations that need to manage user authentication.
References:
Input
Import libraries
In [ ]:
Setup variables
endpoint
: Appwrite endpoint URLproject
: Appwrite project IDkey
: Appwrite secret key
In [ ]:
Model
Create User
This routine will create a new user in the Appwrite project.
In [ ]:
Delete User
This routine will delete an existing user in the Appwrite project.
In [ ]:
List All Users
This routine will list all users in the Appwrite project.
In [ ]:
Output
Display result
In [ ]: