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

Solution: Import the 'cross_origin' module

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

from flask_cors import cross_origin

 

For more information:
Python flask_cors cross_origin