J'avais oublié de push...
This commit is contained in:
10
TP5/Exercice-4.2/app.py
Normal file
10
TP5/Exercice-4.2/app.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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)
|
Reference in New Issue
Block a user