How to Solve NameError: name 'Response' is not defined -- flask

Solution: Import the 'Response' module

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

from flask import Response

 

For more information:
Python flask Response