最小应用

与其他的框架一样,这里也从一个最小应用来展示Sanic的基本功能。

from sanic import Sanic
from sanic.response import json

app = Sanic()

@app.route("/")
async def homepage(requset):
	return json({"hello": "world"})

if __name__ == "__main__":
	app.run(host="0.0.0.0", port=80)

读者可以将这个最小应用的示例与Flask的最小示例比较一下,看看有多少异同点。