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

Solution: Import the 'redirect' module

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

 

For more information:
bottle redirect