Jump to content

Flask (web framework)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Unleno (talk | contribs) at 14:42, 3 October 2010 (Created page with 'Flask is a web microframework written in python and based on the Werkzeug WSGI toolkit and Jinja2 template engine. It is BSD licensed. == History == Flask...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Flask is a web microframework written in python and based on the Werkzeug WSGI toolkit and Jinja2 template engine. It is BSD licensed.

History

Flask has been created by Armin Ronacher. "It came out of an April Fool's joke but proved popular enough to make into a serious application in its own right." [1] Flask is inspired by Sinatra, and the name is inspired perhaps by the Bottle microframework.

Features

  • built in development server and debugger
  • integrated support for unittesting support
  • RESTful request dispatching
  • uses Jinja2 templating
  • support for secure cookies (client side sessions)
  • 100% WSGI 1.0 compliant
  • Unicode based
  • extensively documented