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

Solution: Import the 'send_file' module

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

from flask import send_file

 

For more information:
Python flask send_file