Flask-JWT-Simple adds barebones support for protecting flask endpoints with JSON Web Tokens. It is particularly good for fast prototyping or consuming/producing JWTs that work with other providers and consumers.
If you are using JWTs with just your flask application, it may make more sense to use the sister extension Flask-JWT-Extended. It provides several built in features to make working with JSON Web Tokens easier. These include refresh tokens, fresh/unfresh tokens, tokens in cookies, csrf protection when using cookies, and token revoking. The drawback is that extension is a more opinionated on what needs to be in the JWT in order to get all those extra features to work.
View Installation Instructions
We are on irc! You can come chat with us in the #flask-jwt-extended
channel on freenode
.
We require 100% code coverage in our unit tests. You can run the tests locally
with tox
which will print out a code coverage report. Creating a pull request
will run the tests against python 2.7, 3,4, 3,5, 3,6, and PyPy.
$ tox
You can generate a local copy of the documentation. After installing the requirements,
go to the docs
directory and run:
$ make clean && make html