loongson/pypi/: jinja2-3.0.0 metadata and description

Homepage Simple index

A very fast and expressive template engine.

author Armin Ronacher
author_email armin.ronacher@active-4.com
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
description_content_type text/x-rst
license BSD-3-Clause
maintainer Pallets
maintainer_email contact@palletsprojects.com
platform
  • UNKNOWN
project_urls
  • Donate, https://palletsprojects.com/donate
  • Documentation, https://jinja.palletsprojects.com/
  • Changes, https://jinja.palletsprojects.com/changes/
  • Source Code, https://github.com/pallets/jinja/
  • Issue Tracker, https://github.com/pallets/jinja/issues/
  • Twitter, https://twitter.com/PalletsTeam
  • Chat, https://discord.gg/pallets
provides_extras i18n
requires_dist
  • MarkupSafe (>=2.0.0rc2)
  • Babel (>=2.7) ; extra == 'i18n'
requires_python >= 3.6

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
Jinja2-3.0.0-py3-none-any.whl
Size
130 KB
Type
Python Wheel
Python
3
Jinja2-3.0.0.tar.gz
Size
260 KB
Type
Source

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.

Installing

Install and update using pip:

$ pip install -U Jinja2

In A Nutshell

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