Benutzer-Werkzeuge

Webseiten-Werkzeuge


flask
from flask import Flask
 
app = Flask(__name__)
 
# The route() function of the Flask class is a decorator, 
# which tells the application which URL should call 
# the associated function.
@app.route('/')
def hello_world():
    return 'Hello World'
 
if __name__ == '__main__':
    app.run()
flask.txt · Zuletzt geändert: 2025/05/16 13:39 von admin