Skip to main content

A small but fast and easy to use stand-alone template engine written in pure python.

Project description

Jinja is a small but very fast and easy to use stand-alone template engine written in pure Python.

Since version 0.6 it uses a new parser that increases parsing performance a lot by caching the nodelists on disk if wanted.

It includes multiple template inheritance and other features like simple value escaping.

Template Syntax

This is a small example template in which you can see how Jinja’s syntax looks like:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
    <title>My Webpage</title>
</head
<body>
    <ul id="navigation">
    {% for item in navigation %}
        <li><a href="{{ item.href }}">{{ item.caption|e }}</a></li>
    {% endfor %}
    </ul>

    <h1>My Webpage</h1>
    {{ variable }}
</body>
</html>

Usage

Here is a small example:

from jinja import Template, Context, FileSystemLoader

t = Template('mytemplate', FileSystemLoader('/path/to/the/templates'))
c = Context({
    'navigation' [
        {'href': '#', 'caption': 'Index'},
        {'href': '#', 'caption': 'Spam'}
    ],
    'variable': '<strong>hello world</strong>'
})
print t.render(c)

Unicode Support

Jinja comes with built-in Unicode support. As a matter of fact, the return value of Template.render() will be a Python unicode object.

You can still output str objects as well when you encode the result:

s = t.render(c).encode('utf-8')

For more examples check out the documentation on the jinja webpage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Jinja-0.9.tar.gz (55.8 kB view hashes)

Uploaded Source

Built Distributions

Jinja-0.9-py2.4.egg (73.6 kB view hashes)

Uploaded Source

Jinja-0.9-py2.3.egg (266.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page