J'avais oublié de push...

This commit is contained in:
2025-05-04 13:34:24 +02:00
parent c5ac649848
commit c370789eba
16 changed files with 20344 additions and 0 deletions

9
TP5/Exercice-2.2/app.py Normal file
View File

@@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return "Hello, World!"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)