Description
Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good intentions. A minimal Flask application looks like that:
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run()
This package contains the Python 3.x module.
Upload more screenshots
Please help extend the collection of screenshots. Just make a screenshot and upload it here. You don't need to register or anything.
Upload a screenshotHint: upload an image here from your clipboard with Ctrl-V
Homepage
https://github.com/pallets/flask
Install this software package
If the package is available for the distribution you are currently using on your computer then install the software by clicking on…