from flask import * app = Flask(__name__) @app.route("/") async def start(): return render_template("home.html")