How to Solve NameError: name 'Compress' is not defined -- flask_compress

Solution: Import the 'Compress' module

# Add the following line to the top of your code
from flask_compress import Compress

 

For more information:
flask_compress Compress