Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.75 KB

File metadata and controls

33 lines (22 loc) · 1.75 KB

The flask Package

Reference:

The flask package provides a micro-framework for making applications with web interfaces (a.k.a "web applications").

Run a flask application "in development" using a web server on your local machine, and/or "in production" using a remote web server hosted by a provider like Heroku. If you run it in development, you should be able to use it by visiting localhost:5000 in a browser, whereas if you run it in production, you should be able to use it by visiting the production server's URL.

Installation

First install flask, if necessary:

pip install flask

Usage

Follow the official tutorial.

See also these example applications by the professor and previous students: