I can't import the get_url from bottle:
from bottle import get_url
The error is:
Traceback (most recent call last):
  File "./py_test.py", line 4, in <module>
    from bottle import get_url
ImportError: cannot import name get_url
There is no error when I load any other one like: run, post, get, route, view, static_file, template, ...
 
                        
Bottle doesn't seem to expose a
get_urlfunction. It does have aurlfunction, which wraps theBottle.get_urlmethod for the default application.