2022-2023/1NSI/05_Interaction_client-serveur/scripts/bottle_template_app.py
Bertrand Benjamin 5b206949dd
All checks were successful
continuous-integration/drone/push Build is passing
Feat(1NSI): requete POST et serveur bottle
2023-01-13 15:14:16 +01:00

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)