from bottle import get, run, template @get('/page/') def page_utilisateur(utilisateur): return template("utilisateur.html", utilisateur=utilisateur) run(host='localhost', port=8080, debug=True)