from quart import Quart app = Quart("jos") @app.route("/") async def hello(): return "hello" app.run()