1 2 3 4 5 6 7 8
from flask import Flask app = Flask(__name__) @app.route("/test") def testroute(): return "It's working!"