jinja

The Jinja2 template engine

Github星跟蹤圖

Jinja

Jinja is a fast, expressive, extensible templating engine. Special
placeholders in the template allow writing code similar to Python
syntax. Then the template is passed data to render the final document.

It includes:

  • Template inheritance and inclusion.
  • Define and import macros within templates.
  • HTML templates can use autoescaping to prevent XSS from untrusted
    user input.
  • A sandboxed environment can safely render untrusted templates.
  • AsyncIO support for generating templates and calling async
    functions.
  • I18N support with Babel.
  • Templates are compiled to optimized Python code just-in-time and
    cached, or can be compiled ahead-of-time.
  • Exceptions point to the correct line in templates to make debugging
    easier.
  • Extensible filters, tests, functions, and even syntax.

Jinja's philosophy is that while application logic belongs in Python if
possible, it shouldn't make the template designer's job difficult by
restricting functionality too much.

Installing

Install and update using pip_:

.. code-block:: text

$ pip install -U Jinja2

.. _pip: https://pip.pypa.io/en/stable/quickstart/

In A Nutshell

.. code-block:: jinja

{% extends "base.html" %}
{% block title %}Members{% endblock %}
{% block content %}
  <ul>
  {% for user in users %}
    <li><a href="{{ user.url }}">{{ user.username }}</a></li>
  {% endfor %}
  </ul>
{% endblock %}

主要指標

概覽
名稱與所有者pallets/jinja
主編程語言Python
編程語言Python (語言數: 3)
平台
許可證BSD 3-Clause "New" or "Revised" License
所有者活动
創建於2010-10-17 13:41:17
推送於2025-03-05 20:15:47
最后一次提交
發布數55
最新版本名稱3.1.6 (發布於 2025-03-05 11:59:41)
第一版名稱2.0rc1 (發布於 )
用户参与
星數10.8k
關注者數252
派生數1.6k
提交數2.9k
已啟用問題?
問題數1053
打開的問題數63
拉請求數637
打開的拉請求數18
關閉的拉請求數298
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?