Flask (web framework)
This article provides insufficient context for those unfamiliar with the subject.(April 2012) |
Developer(s) | Armin Ronacher |
---|---|
Initial release | April 1, 2010 |
Stable release | 0.10.1
/ June 14, 2013[1] |
Repository | |
Written in | Python |
Operating system | Cross-platform |
Type | Web application framework |
License | BSD |
Website | flask |
Flask is a lightweight web application framework written in Python and based on the Werkzeug WSGI toolkit and Jinja2 template engine. It is BSD licensed.
Flask is called a microframework because it keeps the core simple but extensible. There is no database abstraction layer, form validation, or any other components where third-party libraries already exist to provide common functionality. However, Flask supports extensions, which can add such functionality into an application as if it was implemented in Flask itself. There are extensions for object-relational mappers, form validation, upload handling, various open authentication technologies, and more.
History
Flask was 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.".[2][3]
Flask is inspired by Sinatra.[citation needed]
Features
- Contains development server and debugger
- Integrated support for unit testing
- RESTful request dispatching
- Uses Jinja2 templating
- Support for secure cookies (client side sessions)
- 100% WSGI 1.0 compliant
- Unicode-based
- Extensive documentation
- Google App Engine Compatibility
- Extensions available to enhance features desired.
Example
Following code shows a simple web application that prints "Hello World!":
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
Web applications built on Flask
See also
External links
References
- ^ http://flask.pocoo.org/docs/changelog/#version-0-10-1
- ^ Ronacher, Armin. "Opening the Flask" (PDF). Retrieved September 30, 2011.
- ^ "Denied: the next generation python micro-web-framework (April Fools page)". Retrieved September 30, 2011.
- ^ "Armin Ronacher". Retrieved 23 January 2012.