Benutzer-Werkzeuge

Webseiten-Werkzeuge


flask

Dies ist eine alte Version des Dokuments!


Flask ist eine python Bibliothek um einen minimalistischen Webserver zu erstellen.

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.1752645293.txt.gz · Zuletzt geändert: 2025/07/16 07:54 von jango