Blogger Information
Blog 13
fans 1
comment 1
visits 18075
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
使用Sanic开发快速异步响应的Web程序
小猿猿er
Original
1465 people have browsed it

文章首发于我的技术博客:猿人学

Sanic是一个类似Flask、仅仅支持Python 3.5+ 版本的web 服务器,旨在运行速度更快。在类似Flask的基础上,Sanic支持异步请求处理,也就是说,你可以使用Python 3.5 中全新而又亮眼的 async/await 语法,使你的代码非阻塞且快速。

下面是一个最简单的Sanic Web 程序:

from sanic import Sanicfrom sanic.response import json

app = Sanic()@app.route("/")async def test(request):return json({"hello": "world"})if __name__ == "__main__":
   app.run(host="0.0.0.0", port=8000)

以上代码显示了Sanic的基本用法:

全局生成一个Sanic对象:app = Sanic()

Web路由由装饰器@app.route()管理,也可以通过url_for()、add_route()指定(详见文档)

请求响应函数用async声明进行异步处理,输入必须有request对象,返回response对象

Blueprint

如果网站很复杂,路由路径很多,全部写在一个文件里面会比较复杂,这时候可以使用Blueprint,把不同功能写到不同blueprint文件里面,让整个代码结构逻辑更清晰

Class-Based Views

如果你用过tornado,一定对它用类处理请求的方式印象深刻,对同一个路由路径分别处理GET、POST、DETET等请求方式时,只要实现该类的几个不同方法即可,让整个代码的逻辑结构更清晰。同样,Sanic也提供了基于类的处理方式: HTTPMethodView

Jinja网页模板

Jinja具有快速强大的html模板渲染能力,是很多Python Web框架首选的html模板处理器。Sanic没有实现自己的模板处理,但可以把Jinja融入进来: sanic_jinja2

i18n国际化处理

Web网站经常要同时支持多种语言,这个时候就要遇到国际化处理的问题,这方便也有模块把Babel集成进来: sanic_babel

小技巧:

你针对路由路径 ‘/product’ 写了Blueprint bp_product, 但要支持en, zh, jp三种语言路径,即: /en/product, /zh/product, /jp/product, 你该怎么做呢?

在一个循环里为每种语言注册该路径:

for lang in ['en', 'zh', 'jp']:

   app.blueprint(bp_product, url_prefix='/%s' % lang)

MySQL读写

Sanic是异步处理的框架,读写数据库MySQL当然也要用异步IO的方式,才能体系异步的高效。aiomysql就是基于pymysql实现的异步读写MySQL的数据库模块,同样有模块为sanic因一波封装了aiomysql,使得MySQL读写更加方便,它就是: sanicdb


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post