Differences between revisions 47 and 48
Revision 47 as of 2008-11-22 23:37:29
Size: 11246
Editor: IanBicking
Comment:
Revision 48 as of 2008-12-20 15:50:19
Size: 11538
Editor: p5B07DB5B
Comment: added pyratemp
Deletions are marked like this. Additions are marked like this.
Line 54: Line 54:
    * [[http://www.simple-is-better.org/template/pyratemp.html|pyratemp]] - a very small (<500 LOC) but complete template-engine, using restricted python-expressions. There are also some [[http://www.simple-is-better.org/template/|benchmarks and comparisons]] of different template-engines.

Templating in Python

Templating, and in particular Web templating, involves the presentation of information in a form which is often (but not always) intended to be readable, even attractive, to a human audience. Frequently, templating solutions involve a document (the template) which may look somewhat like the final output but perhaps in a simplified or stylized form, along with some data which must be presented using that template; combining these two things produces the final output which in Web templating is usually (but not always) a Web page of some kind.

Templating Engines

There are many, many different HTML/XML templating packages and modules for Python that provide different feature sets and syntaxes. These libraries usually assume that you know how to write HTML or XML.

The number of templating engines is so great because the mechanisms involved are pretty easy to write in Python, at least for a fairly basic template engine; this recipe from the Python Cookbook shows how easy it is.

Engines using Value Substitution

The simplest form of templating engine is that which merely substitutes values into a template in order to produce the final output.

  • string.Template in the standard library

  • stringtemplate - employs recursion in order to provide support for complicated templating whilst avoiding side-effects

Engines Mixing Logic into Templates

A popular approach with templating engines is to embed logic or control-flow statements into the templates themselves in a way that can make the the final output appear rather different from the original template. For example:

<table>
  <%
  for item in items:
    %>
    <tr>
      <th>Name</th>
      <td><%= item.name %></td>
    </tr>
    <%
  %>
</table>

The introduction of such logic may also cause problems for some XML-based tools. Despite these shortcomings, such templating engines may be more applicable to non-Web templating problems or for situations where separating logic from content may actually make the solution harder to understand.

  • Airspeed - Velocity Templates for Python

  • Castalian

  • Cheetah

  • CubicTemp

  • Django template system

  • Elements

  • EmPy

  • Evoque - managed eval-based full-featured lightweight restricted-execution text-based pure python templating engine. Performance benchmarks show it to be more or less as fast as Mako, and faster on simpler templates.

  • HRL Powerful macro preprocessor for HTML; macros can embed arbitrary Python code

  • Genshi - XML-based templating engine, used in the popular python tool trac. Performance tests show that it is the fastest of all xml based templating engines in Python.

  • Jinja - sandboxed textbased templating engine.

  • Mako - new templating engine based on ideas from Myghty. Perfomance tests show that it is the fastest of all text based templating engines in Python. (True at the time when Mako was originally released.)

  • Myghty inspired by Perl's Mason, replaced by Mako and MyghtyUtils.

  • Qpy provides a convenient mechanism for generating safely-quoted html text from python code. It does this by implementing a quoted-string data type and a modification of the python compiler. A lot faster than Mako.

  • pyratemp - a very small (<500 LOC) but complete template-engine, using restricted python-expressions. There are also some benchmarks and comparisons of different template-engines.

  • Spyce

  • Tempita a fairly simple, small templating language with full Python expressions

  • Tenjin is the fastest template engine implemented in pure Python. It is about x2 faster than Mako, x3 than Cheetah, x9 than Django, x60 than Kid.

  • Template Toolkit - Python port of Perl template engine

  • thrases - format-free Python needing just ~~ for separating phrases (as the semicolon in Python or C). Template.init() analyses, which phrases are python and which not, building a python script for exec(). This script does only contain minimal overhead - Template.render() is near to the theoretical maximum speed. Beside creating a StringIO Template.render() can also write directly on a file descriptor for improved performance.

  • Wasp - simplicity itself: two tags plus free-form Python

Engines with Annotated Templates

The following engines feature template documents whose sections are marked using special attributes (or, less frequently, special elements or tags). For example:

<table annotation:element="items">
  <tr annotation:element="item">
    <th>Name</th>
    <td>{name}</td>
  </tr>
</table>

In some systems, the sections are then manipulated within program code; in others, the template structure indicates sections which are to be repeated, omitted, and so on, and the templating system then merges the template with some data structure provided by the program. Generally, the reason for annotating templates in this way (particularly through the use of attributes) is to better support the editing of such templates in XML-based tools which might otherwise complain about or damage template information if it were not included carefully in documents.

  • #ClearSilver - uses special elements/tags

  • HTMLTemplate

  • JonsPythonModules - uses special comment-like markers

  • meld3 and PyMeld are very similar

  • Pyxer - based on Genshi parser engine. Optimized for work with Google App Enginge (GAE)

  • pso

  • Sprite - uses special comment-like markers

  • teng - uses processing instruction-like markers

  • webstring - uses attributes in XML/HTML templates and a specific character in text templates

  • XSLTools - uses special attributes (with XML documents providing the data)

  • PyPa - nested comment-delimited blocks that are accessible from Python code as objects.

In other systems, the annotations are actually evaluated in order to produce repeated sections to omit or to include sections, and so on:

  • Genshi - Template engine inspired by Kid, supports both XML and plain-text templates

  • htmltmpl - uses HTML-like elements/tags and supports compilation

  • Kid - XML based, compiling template engine

  • SimpleTAL - introduces a certain amount of logic but in an XML-compatible fashion

  • CherryTemplate

HTML Shorthand Processors

The libraries in this section implement simpler markup languages that can be automatically converted to HTML. This lets you avoid having to write HTML by hand.

Template engines implemented as Internal DSL's

These engines are implemented as an internal DSL, that is, they don't process text into markup, rather they represent the final document as actual Python code and data structures.

HTML Generation Packages

These packages are not really templating systems in that they do not typically employ a template document as such to define the form of the output they produce, but they can be useful in applications where it is more convenient to programmatically generate output.

Static Website Generators

Static website generators are more than templating engines in that they create the whole site structure, not just individual files. While templating is an important part of their function, determining the site structure and incorporating structural information in the output (for example to automatically generate navigational elements) is what really makes a static website generator a useful tool.

Java Templating Engines

The following templating engines are accessible or usable via Jython:

CPython-accessible C Templating Engines

Best Template Engine

Templating (last edited 2019-12-15 07:18:08 by FrancesHocutt)

Unable to edit the page? See the FrontPage for instructions.