I just learned about flask and JWT like a week ago so I could really use some help. Can someone explain the difference between flask-jwt and flask-jwt-extended?
Asked
Active
Viewed 3,192 times
2 Answers
29
Flask-JWT does not have as many features, has made some silly design choices, and has been abandoned for years (look at how many open pull requests there are on the github page). Flask-JWT-Extended has more features, is better documented, and is still actively maintained. If you are looking for a JWT extension for Flask, you should absolutely use Flask-JWT-Extended over Flask-JWT.
-
4thanks for this concise answer, you saved me a lot of time ^_^ – Green Mar 12 '19 at 14:16
-
yet do you have any tutorial, guide or tips on how to implement them with templates rendering? I'm trying to use them here [link](https://stackoverflow.com/questions/55296439/implementing-flask-jwt-extended-with-templates-rendering) but I'm struggeling – Green Mar 22 '19 at 14:31
0
Flask-JWT-Extended works pretty much similar way to Flask-JWT, In addition to which there are a lots of functionalities that it extends such as token refresh.
Also from Python 3.10, the support for flask-jwt has been removed.

RJB
- 1
- 2