1 2 3 4 5 6 7 8 9
from quart import Quart app = Quart(__name__) @app.route('/') async def hello(): return 'hello' app.run()