# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-Jinja2 VERSION= 3.1.2 KEYWORDS= python VARIANTS= py39 py310 SDESC[py310]= Fully featured template engine (3.10) SDESC[py39]= Fully featured template engine (3.9) HOMEPAGE= https://palletsprojects.com/p/jinja/ CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPIWHL/bc/c3/f068337a370801f372f2f8f6bad74a5c140f6fda3d9de154052708dd3c65 DISTFILE[1]= Jinja2-3.1.2-py3-none-any.whl:main DF_INDEX= 1 SPKGS[py310]= single SPKGS[py39]= single OPTIONS_AVAILABLE= PY39 PY310 OPTIONS_STANDARD= none VOPTS[py310]= PY39=OFF PY310=ON VOPTS[py39]= PY39=ON PY310=OFF USES= cpe DISTNAME= Jinja2-3.1.2.dist-info CPE_PRODUCT= jinja CPE_VENDOR= palletsprojects GENERATED= yes [PY39].RUN_DEPENDS_ON= python-MarkupSafe:single:py39 [PY39].USES_ON= python:py39,wheel [PY310].RUN_DEPENDS_ON= python-MarkupSafe:single:py310 [PY310].USES_ON= python:py310,wheel [FILE:2180:descriptions/desc.single] 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/getting-started/ In A Nutshell ------------- .. code-block:: jinja {% extends "base.html" %} {% block title %}Members{% endblock %} {% block content %}