Skip to main content

A microframework based on Werkzeug, Jinja2 and good intentions

Project description

Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions. And before you ask: It’s BSD licensed!

Flask is Fun

Save in a hello.py:

from flask import Flask
app = Flask(__name__)

@app.route("/")
def hello():
    return "Hello World!"

if __name__ == "__main__":
    app.run()

And Easy to Setup

And run it:

   $ pip install Flask
   $ python hello.py
    * Running on http://localhost:5000/

Ready for production? `Read this first <http://flask.pocoo.org/docs/deploying/>`.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-0.12.tar.gz (531.9 kB view hashes)

Uploaded Source

Built Distribution

Flask-0.12-py2.py3-none-any.whl (82.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page