About Anaconda Help Download Anaconda
If you were automatically logged out you may need to refresh the page. You're trying to access a page that requires authentication. ×

A microframework based on Werkzeug, Jinja2 and good intentions

  • License: BSD
  • 421 total downloads
  • Last upload: 11 years and 3 months ago

Installers

pip install

Authentication Prerequisites:
TOKEN=$(anaconda auth --create --name download-token)

To install this package run one of the following:
pip install -i https://pypi.anaconda.org/t/$TOKEN/alt-pypi-mirror/simple flask

Description

Flask

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

from flask import Flask
app = Flask(__name__)

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

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

And Easy to Setup

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

© 2026 Anaconda, Inc. All Rights Reserved. (v4.2.13) Legal | Privacy Policy