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
it works:
@app.route("/login//") def login(user, password): app.logger.error('An error occurred') app.logger.error(password) return "user : %s password : %s" % (user, password)
then:
http://example.com:5000/login/jack/hi
output:
user : jack password : hi