loongson/pypi/: jinja2-2.11.2 metadata and description

Homepage Simple index Newer version available

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
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
  • Topic :: Internet :: WWW/HTTP :: Dynamic Content
  • Topic :: Software Development :: Libraries :: Python Modules
  • Topic :: Text Processing :: Markup :: HTML
description_content_type text/x-rst
license BSD-3-Clause
maintainer Pallets
maintainer_email contact@palletsprojects.com
project_urls
  • Documentation, https://jinja.palletsprojects.com/
  • Code, https://github.com/pallets/jinja
  • Issue tracker, https://github.com/pallets/jinja/issues
provides_extras i18n
requires_dist
  • MarkupSafe (>=0.23)
  • Babel (>=0.8) ; extra == 'i18n'
requires_python >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*

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

File Tox results History
Jinja2-2.11.2-py2.py3-none-any.whl
Size
123 KB
Type
Python Wheel
Python
2.7
  • Replaced 2 time(s)
  • Uploaded to loongson/pypi by loongson 2022-08-08 02:42:32

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