python Sanic服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Sanic服务器相关的知识,希望对你有一定的参考价值。

from sanic import Sanic
from sanic.response import json
from sanic import response
app = Sanic()

@app.route("/")
async def test(request):
    return response.text("Lol")
    
@app.route("/json")
def post_json(request):
    return json({ "received": True, "message": request.json })
    
if __name__ == "__main__":
    app.run(host="0.0.0.0", port=7790)

以上是关于python Sanic服务器的主要内容,如果未能解决你的问题,请参考以下文章

我可以使用 Python3.6 Sanic 在 websockets 中检测到“连接丢失”吗?

python学习笔记第13章:web开发之sanic框架

python学习笔记第13章:web开发之sanic框架

异步处理的框架Sanic的使用方法和小技巧

我可以使用Python3.6 Sanic检测websockets中的“连接丢失”吗?

python 异步Web框架sanic