This project aims to implement the Clerk API for user management in your Python application. Clerk is an identity and user management platform that provides features such as authentication, user management, and access control. By integrating the Clerk API into your application, you can easily handle user registration, authentication, and authorization.
- Client:
-
get_clients_list -
verify_client -
get_client -
get_last_active_sessionfrom client import Client secret_key = "Your secret key" client = Client(secret_key=secret_key) """ You can also export CLERK_SECRET_KEY=<Your secret key> client = Client(secret_key=secret_key) """ # Get clients list: client.get_clients_list() # Verify a client token = "Your Token" client.verify_client(token) # Get client client_id = " Your Client ID" client.get_client(client_id) # Get last active session client.get_last_active_session(client_id)
- Email Address:
create_emailget_email_addressdelete_email_addressupdate_email_address
- Webhook:
create_svix_appdelete_svix_appcreate_svix_dashboard_url