Which is the simplest and light weight html templating engine in Python which I can use to generate customized email newsletters.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
For a really minor templating task, Python itself isn't that bad. Example:
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). |
|||
|
|
Anything wrong with string.Template? This is in the standard Python distribution and covered by PEP 292:
|
||||
|
|
|
I use Kid Template Engine |
|||
|
|
|
I think Werkzeug Mini Templates fit the bill pretty well. Here's the source code on Github. |
|||
|
|
