June 2017
Intermediate to advanced
446 pages
10h 10m
English
Like most popular open source projects, Flask has very good documentation, available at http://flask.pocoo.org/docs/0.10/. If any of the examples are unclear, you can be sure to find the answer on the project documentation.
Our first Flask application is contained in one single file, namely chapter9_1.py:
from flask import Flaskapp = Flask(__name__) ...
Read now
Unlock full access