How to Solve NameError: name 'jwt_required' is not defined -- flask_jwt

Solution: Import the 'jwt_required' module

To Solve the error, add the following line to the top of your code.

from flask_jwt import jwt_required

 

For more information:
Python flask_jwt jwt_required