Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which is the simplest and light weight html templating engine in Python which I can use to generate customized email newsletters.

share|improve this question

4 Answers

up vote 4 down vote accepted

For a really minor templating task, Python itself isn't that bad. Example:

def dynamic_text(name, food):
    return """
    Dear %(name)s,
    We're glad to hear that you like %(food)s and we'll be sending you some more soon.
    """ % {'name':name, 'food':food}

In this sense, you can use string formatting in Python for simple templating. That's about as lightweight as it gets.

If you want to go a bit deeper, Jinja2 is the most "designer friendly" (read: simple) templating engine in the opinion of many.

You can also look into Mako and Genshi. Ultimately, the choice is yours (what has the features you'd like and integrates nicely with your system).

share|improve this answer
I agree, a lot of times Python's formatting facilities are just what's needed. You can do something like "Hello {foo}".format(foo="World"). Also consider, Python string module: docs.python.org/library/string.html#template-strings But once you begin to require some conditional or iterative logic in-template, you'll need something more substantial as suggested in other answers. – Pavel Repin Dec 10 '10 at 6:07

Anything wrong with string.Template? This is in the standard Python distribution and covered by PEP 292:

from string import Template

form=Template('''Dear $john,

I am sorry to imform you, $john, but you will not be my husband
when you return from the $theater war. So sorry about that. Your
$action has caused me to reconsider.

Yours [NOT!!] forever,

Becky

''')

first={'john':'Joe','theater':'Afgan','action':'love'}
second={'john':'Robert','theater':'Iraq','action':'kiss'}
third={'john':'Jose','theater':'Korean','action':'discussion'}

print form.substitute(first)
print form.substitute(second)
print form.substitute(third)
share|improve this answer
str.format() is much more powerful than string.Template, but as simple. – Apalala Feb 28 at 14:37

I use Kid Template Engine

share|improve this answer

I think Werkzeug Mini Templates fit the bill pretty well.

Here's the source code on Github.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.