How to Solve NameError: name 'response' is not defined -- bottle

Solution: Import the 'response' module

# Add the following line to the top of your code
from bottle import response

 

For more information:
bottle response