From 7b74387cdbc823fc9c5440661d6e0ba5eb935c61 Mon Sep 17 00:00:00 2001 From: Lea Hackl Date: Wed, 17 Jun 2026 16:46:32 +0200 Subject: [PATCH] =?UTF-8?q?pinnwand=20erg=C3=A4nzung?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app.py b/app.py index 4751704..7a2bd06 100644 --- a/app.py +++ b/app.py @@ -3,6 +3,7 @@ from flask import Flask, request app = Flask(__name__) @app.route("/") +#nachrichten def hello(): return "Hallo aus meiner Flask-App!" @@ -15,12 +16,8 @@ def frage(): return '
Was ist 3 + 5? ' \ '
' -if __name__ == "__main__": - app.run(host="0.0.0.0", port=9006) # 90 + Raumnummer -ffrom flask import Flask, request, redirect - -app = Flask(__name__) +#pinnwand eintraege = [] # speichert die Nachrichten (im Arbeitsspeicher) @app.route("/pinnwand", methods=["GET", "POST"])