How to Solve NameError: name 'CORS' is not defined -- flask_cors

Solution: Import the 'CORS' module

# Add the following line to the top of your code
from flask_cors import CORS

 

For more information:
flask_cors CORS