- python3-click (>= 5.1)
- python3-itsdangerous (>= 0.24)
- python3-jinja2 (>= 2.10)
- python3-werkzeug (>= 0.15)
- python3:any
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.
Installed Size: 419.8 kB
Architectures: all