About Anaconda Help Download Anaconda

A microframework based on Werkzeug, Jinja2 and good intentions

  • License: BSD
  • 295 total downloads
  • Last upload: 10 years and 8 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/

© 2025 Anaconda, Inc. All Rights Reserved. (v4.2.0) Legal | Privacy Policy