flask
A microframework based on Werkzeug, Jinja2 and good intentions
A microframework based on Werkzeug, Jinja2 and good intentions
To install this package, run one of the following:
Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. And before you ask: It's BSD licensed!
from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello World!" if __name__ == "__main__": app.run()
$ pip install Flask $ python hello.py * Running on http://localhost:5000/
Summary
A microframework based on Werkzeug, Jinja2 and good intentions
Last Updated
Oct 14, 2014 at 23:34
License
BSD
Total Downloads
421
Supported Platforms