Flask extension for implementing passwordless login.
Inspired by passwordless
This simple flask plugin allows you to implement passwordless login using one-time password token authentication.
Passwordless authentication is faster to deploy, easier for your users and better for security.
A single userid
field in your web front-end and that's it. No need for complicated user login forms.
Users don't have to come up with a secure password.
Because using one-time token, you don't need to store users' passwords so you have no passwords to lose to hackers.
Similar to any modern python libraries, install flask-passwordless with pip
pip install flask-passwordless
If you're using virtualenv (and you really should), activate the virtualenv before doing pip install
.
Take a look at the examples folder
- Free software: BSD license
- Documentation: http://flask-passwordless.rtfd.org.