experimental/cpu/: jinja2-3.1.4 metadata and description

Simple index

A very fast and expressive template engine.

classifiers
  • Development Status :: 5 - Production/Stable
  • Environment :: Web Environment
  • Intended Audience :: Developers
  • License :: OSI Approved :: BSD License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content
  • Topic :: Text Processing :: Markup :: HTML
  • Typing :: Typed
description_content_type text/markdown
maintainer_email Pallets <contact@palletsprojects.com>
project_urls
  • Changes, https://jinja.palletsprojects.com/changes/
  • Chat, https://discord.gg/pallets
  • Documentation, https://jinja.palletsprojects.com/
  • Donate, https://palletsprojects.com/donate
  • Source, https://github.com/pallets/jinja/
provides_extras i18n
requires_dist
  • MarkupSafe>=2.0
  • Babel>=2.7 ; extra == "i18n"
requires_python >=3.7
File Tox results History
jinja2-3.1.4-py3-none-any.whl
Size
130 KB
Type
Python Wheel
Python
3

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:

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.

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 %}

Donate

The Pallets organization develops and supports Jinja and other popular packages. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.