I\'m building an application in both Bottle and Flask to see which I am more comfortable with as Django is too much \'batteries included\'.
I have read through the routi
Splitting the string doesn't introduce any inefficiency to your program. Performance-wise, it's a negligible addition to the URL processing done by the framework. It also fits in a single line of code.
@app.route('/') def my_view(fullurl): params = fullurl.split('/')