Name your single favorite Python templating engine (and describe why it's your favorite).
|
feedback
|
closed as not constructive by Henk Holterman, Bill the Lizard♦ Oct 13 '11 at 11:34
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Nice syntax, good customization possibilities. Integrates well. Can be sandboxed, so you don't have to trust completely your template authors. (Mako can't). It is also pretty fast, with the bonus of compiling your template to bytecode and cache it, as in the demonstration below:
This code has been generated on the fly by Jinja2. Of course the compiler optmizes it further (e.g. removing | ||||
|
feedback
|
|
My favorite templating engine is python itself. For example,
Nice and easy, huh? | |||||||||||||||||||
feedback
|
|
Genshi. XML-based, which means your document has structure that can be manipulated rather than being an opaque string to be outputted. This enables powerful filters to be written that don't rely on regexp mangling. It uses standard XInclude rather than custom include syntax. You can refer to other parts of the document with XPath. You can output HTML 4.01, XHTML 1.0, etc. To sample the syntax, loops look like:
By default it escapes variables so you are safe from XSS attacks, and being XML-based, all output is well-formed. It is not sandboxable yet, although there is an experimental branch that allows this. Unlike many other template engines, it supports real Python expressions and doesn't try to stop you from doing anything. In theory, this allows you to write spaghetti code that entangles the business logic with the presentation, which is why some other template engines restrict you from doing things. In practice, this doesn't happen. Genshi treats you like an adult who can make his own decisions, much like the way Python treats you like an adult by not having private members etc. It has good internationalisation and localisation support, being developed by the same people who work on Babel. It also hooks into standard XML syntax, e.g. There is persistent FUD coming from the Django camp saying that Genshi is no good for non-markup output. This is simply false, in fact the use of XML makes supporting other file formats easier. For instance, I've used Genshi to generate MIME emails with attachments, multiple parts, plain text fallbacks, etc, which was made tremendously easier by the fact that I could hook into the template structure. You can't do that with a plain text system. And of course, if you do find an advantage to using plain text, Genshi also has a plain-text variant that can be used. For instance, I store server configuration in a database, and use Genshi's plaintext mode to generate server config files. Benchmarks comparing Genshi performance to other template engines are available on the Genshi website. Note that text mode is significantly faster than XML mode, but XML mode still performs respectably. | ||||
feedback
|
|
Single favorite: Mako. Recently, I used Mako templates to build unit test code. The users provided the test results in spreadsheets. I used Mako to generate the Java Junit test code from the spreadsheets. Mako was easy to install and use. I use Django a lot, but I don't have the patience to work out how to use it separately from the rest of the framework. | |||||||
feedback
|
|
Nevow, of course.
Nevow has a number of unusual advantages:
The main attraction, of course, is the included COMET server and JavaScript module system. You can freely inter-call between Python and JavaScript, and it's really easy:
but even if all you need to output is vanilla HTML, it can be quite nice. | |||||
feedback
|
|
Django templates if you're using Django or AppEngine. They way the templating engine and syntax is constructed, it's very hard to do any code in the template layer (that's a good thing). Every time I thought I was running up against a wall in Django's templates, it's because I was trying to do something wrong that I'd carried over from a more liberal templating language. I'd also look at Jinja2, its a superset of Django's templates, and therefore contains a lot more "powerful" syntax, which would be good or bad depending on how you look at it. I've also used Cheetah, but once you go Django, you never go back :) I should mention I don't like stuff like Genshi which restrict you to an XML document because its pretty inflexible when you try to do stuff that's not XML (i.e. emails, PDFs, and so forth). | |||||||||
feedback
|
|
I think there is no "single" template engine for Python. You have to decide that by checking your requirements. You do not work with the Django Framework? Then rule out the Django Template Engine. Do you have template designers that are not programmers or maybe not trustable (user submitted templates)? Give Jinja2 a try. Do you want to embedd the full power of Python in your templates? Mako is the engine of choice then. Are you processing XML stuff? Genshi can do that. There are more exotic templating engines like nevow or that Markaby inspired one where I forgot the name. Cheetah/kit/TAL exist too, but they don't have any real advantages over the newer template engines listed above. | ||||
|
feedback
|
|
The web2py templating engine is full Python without indentation requirements (use
It also has powerful helpers:
| ||||
|
feedback
|
|
I really enjoyed using Cheetah. I liked that you could compile the templates and just populate it easily. | |||||
feedback
|
|
Seconding Mako. It's dead simple to set up. For most uses, this is all the code you need:
| |||||||
feedback
|
|
Evoque of course: best simplicity-to-power ratio, one of the few systems that can offer sandboxed execution, possibly the fastest pure-python templating engine, small codebase, runs also on python 3, ... | ||||
|
feedback
|
|
There IS a single Python templating engine: StringTemplate. If you need something more than Python itself (use it when you can), then there is no substitute. Check out http://www.cs.usfca.edu/~parrt/papers/mvc.templates.pdf for details of why. And use it for other platforms, too. I have used StringTemplate on Python, Java, and .Net for years, and I have used many alternatives. I see no need to ever use anything else, nor can I even imagine that there could be a superior solution (no kidding). That design decision is done for me. | ||||
feedback
|
|
I'm a fan of Django's default templating system for its ease and simplicity. | ||||
|
feedback
|
|
As a variation on the string formatting suggestion above from Kevin Holzer, here's a pretty clever hack that I found from some folks who needed to generate some KML snippets: (their code) I hate having to edit in-line html where I can't use indenting to keep track of the structure of what I'm doing, so I found it quite handy for generating little blobs of html that had to be inserted somewhere. Using a regex for the whitespace and **kwargs for your dictionary:
Then you can do something like this:
NB: Python 3 (backported to 2.6) has got: str.format(*args, **kwargs) | ||||
|
feedback
|