2022-2023/1NSI/05_Interaction_client-serveur/scripts/bottle_base.py
Bertrand Benjamin 3f34477494
All checks were successful
continuous-integration/drone/push Build is passing
Feat(NSI): construction serveur sur Requetes GET
2023-01-10 10:26:34 +01:00

8 lines
129 B
Python

from bottle import get, run
@get('/hello')
def hello():
return "Hello World!"
run(host='localhost', port=8080, debug=True)