未提供项目描述
项目描述
a jinja2 template renderer for Sanic. It supports
基于函数的Web处理器
基于类的视图
装饰器,便于使用
您可以在这里了解更多信息
http://jinja2-sanic.readthedocs.io/en/latest/
安装
pip3 install jinja2-sanic
快速入门
from sanic import Sanic
from sanic.views import HTTPMethodView
from sanic.exceptions import ServerError
app = Sanic("sanic_jinja2_render")
# Setup jinja2 environment
template = "<html><body><h1>{{Player}}</h1>{{Category}}</body></html>"
jinja2_sanic.setup(
app,
loader=jinja2.DictLoader(
{
"templates.jinja2": template
}
)
)
# Usage in function based web handlers
@app.route("/")
@jinja2_sanic.template("templates.jinja2")
async def func(request):
return {
"Player": "CR7",
"Category": "Soccer",
}
# Usage in class-based views
class SimpleView(HTTPMethodView):
@jinja2_sanic.template("templates.jinja2")
async def get(self, request):
return {
"Player": "CR7",
"Category": "Soccer",
}
# register class based view routes
app.add_route(SimpleView.as_view(), "/")
# Start Server
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000)
开发
jinja2-sanic accepts contributions on GitHub, in the form of issues or pull requests.
构建。
./uranium
运行单元测试。
./uranium test