from flask import Flask, request app = Flask(__name__) @app.route("/") def hello(): return "Hallo aus meiner Flask-App!" @app.route("/frage", methods=["GET", "POST"]) def frage(): if request.method == "POST": if request.form["antwort"] == "8": return "Richtig!" return "Leider falsch." 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__) eintraege = [] # speichert die Nachrichten (im Arbeitsspeicher) @app.route("/pinnwand", methods=["GET", "POST"]) def pinnwand(): if request.method == "POST": eintraege.append(request.form["nachricht"]) return redirect("/app/pinnwand") liste = "" for e in eintraege: liste = liste + "
  • " + e + "
  • " return '

    Pinnwand

    ' \ '
    ' \ '
    ' if __name__ == "__main__": app.run(host="0.0.0.0", port=9006) # 90 + Raumnummer