Python Sanic框架入门
序言
我们继续学习Python异步编程,这里将介绍异步Web框架sanic,为什么不是tornado?
从框架的易用性来说,Flask要远远比tornado简单,可惜flask不支持异步,而sanic就是类似Flask语法的异步框架。
pip3 install sanic==20.22.1 jinja2==2.11.2
pip3 install sanic
sanic.response
- json
- text
- raw
- html
- file
- file_stream
- stream
资料
https://www.osgeo.cn/sanic/
https://www.cnblogs.com/xiao-xue-di/p/10400433.html
https://www.cnblogs.com/fnng/p/12783542.html