2022-2023/1NSI/05_Interaction_client-serveur/scripts/bottle_template_app.py

8 lines
213 B
Python

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