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

Solution: Import the 'route' module

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

 

For more information:
bottle route