クイックスタート#

Hello World#

単に hello を含む応答を返す非常にシンプルなアプリは、(ファイル hello-world.py

from quart import Quart

app = Quart(__name__)

@app.route('/')
async def hello():
    return 'hello'

app.run()

また、単に次のように実行されます。

python hello-world.py

または、代わりとして次のように実行されます。

$ export QUART_APP=hello-world:app
$ quart run

そして、次のようにテストされます。

curl localhost:5000

関連項目#

チートシート