This commit is contained in:
2026-03-18 10:52:00 +01:00
parent c6e2cec50e
commit 7f5d1a6200

View File

@@ -0,0 +1,14 @@
from flask import Flask
app = Flask("Adam")
@app.route("/")
def index():
return '<h2>Welcome!</h2><br><a href="druga"> aaaa</a>'
@app.route("/druga")
def druga():
return "<h3>Welcome again!</h3>"
if __name__ == "__main__":
app.run(debug=True)