How to Solve NameError: name 'Bcrypt' is not defined -- flask_bcrypt

Solution: Import the 'Bcrypt' module

# Add the following line to the top of your code
from flask_bcrypt import Bcrypt

 

For more information:
flask_bcrypt Bcrypt