python-flask

micro web framework based on Werkzeug and Jinja2 - Python 2.7

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 2.7 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 screenshot

Hint: upload an image here from your clipboard with Ctrl-V


Homepage

http://flask.pocoo.org/


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…

Install python-flask