In a bookmarking app. in Bottle I'm trying to capture a link which is appended to a URL.
But when I'm trying to send a YouTube URL, eg.
http://myapp.com/bookmark/https://www.youtube.com/watch?v=6ZOPGKFsTzI
Even the route
@route("/bookmark/<url:re:.+>")
def save(url) :
...
won't capture it.
It captures the https://www.youtube.com/watch but stops at the ?
Any ideas on a pattern to match this?