当前位置:   article > 正文

Python编程:sanic异步web框架_python安装sanic

python安装sanic

github: https://github.com/huge-success/sanic

使用方式和Flask 基本一致

安装

pip3 install sanic
  • 1

最简单的示例

# -*- coding: utf-8 -*-

from sanic import Sanic
from sanic.response import text

app = Sanic()


@app.route('/')
async def hello(request):
    return text("hello sanic")


if __name__ == '__main__':
    app.run(host='0.0.0.0', port=8000)

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/136883
推荐阅读
相关标签
  

闽ICP备14008679号