Python: Flask Base: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

    19 October 2021

    • curprev 23:5423:54, 19 October 2021200.201.163.25 talk 2,246 bytes +2,246 Created page with "app.py <pre> from flask import Flask, render_template app = Flask(__name__) @app.route('/') def hello(): return render_template("home.html", message="Hello Flask!") @..."