Python: Retrieve a user
- This method gets the user object from the current session.
- Fetches the user object from the database instead of local session.
Examples
Get the logged in user with the current existing session
data = supabase.auth.get_user()
Get the logged in user with a custom access token jwt
data = supabase.auth.get_user(jwt)