Update README.md (#53)

* Update README.md

* flask
This commit is contained in:
Andras Bacsai
2025-09-25 11:26:30 +02:00
committed by GitHub
parent 6457a95887
commit 269ae91c9b
9 changed files with 89 additions and 0 deletions

10
flask/app.py Normal file
View File

@@ -0,0 +1,10 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template("index.html")
if __name__ == "__main__":
app.run(debug=True)