A Python wrapper for the Clef API. Authenticate a user and access their information in two lines of code.
Install using pip:
pip install clef
The Clef API lets you retrieve information about a user after they log in to your site with Clef.
Create a Clef application to get your App ID and App secret.
The Clef button has a data-redirect-url
, which is where you'll be interacting with the Clef API.
When a user logs in with Clef, the browser will redirect to your data-redirect-url
. To retrieve user information, call get_login_information
in that endpoint:
import clef
clef.initialize(app_id=YOUR_APP_ID, app_secret=YOUR_APP_SECRET)
# In your redirect URL route:
code = request.args.get('code')
user_information = clef.get_login_information(code=code)
For what to do after getting user information, check out our documentation on Associating users.
When you configure your Clef integration, you can also set up a logout hook URL. Clef sends a POST to this URL whenever a user logs out with Clef, so you can log them out on your website too.
import clef
clef.initialize(app_id=YOUR_APP_ID, app_secret=YOUR_APP_SECRET)
# In your logout hook route:
logout_token = request.form.get("logout_token")
clef_id = clef.get_logout_information(logout_token=logout_token)
For what to do after getting a user who's logging out's clef_id
, see our
documentation on Database
logout.
This repo includes a one-file sample app that uses the Flask framework and demonstrates authentication. To try it out:
- Install Flask if you don't already have it
$ pip install Flask
- Run sample_app.py
$ python sample_app.py
- Visit http://localhost:5000 in your browser
The sample app doesn't handle checking timestamped logins, but there are code samples that demonstrate how to do this.
Check out the API docs.
Access your developer dashboard.