Initial commit.

This commit is contained in:
2020-01-11 10:33:58 +01:00
commit afcec9769e
542 changed files with 151530 additions and 0 deletions

13
my_flask_app.py Normal file
View File

@@ -0,0 +1,13 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/helloWorld")
def hello():
return "Hello world!"
@app.route("/")
def home():
return render_template('home.html', message='Hello, welcome!')
if __name__ == "__main__":
app.run()