0

I want to have a flexible templating language that I can customize for a specific use case, and also make it simple enough for non-programmers to use. I looked at Cheetah; does anyone have any others and/or any thoughts on customization? Python would be great, but other language-implementations are also OK.

zallarak
  • 5,287
  • 7
  • 38
  • 54

2 Answers2

1

Jija2 is a templating library that I find easy to use

See: http://jinja.pocoo.org/docs/

See a previous SO question: What is the fastest template system for Python?

Community
  • 1
  • 1
pyfunc
  • 65,343
  • 15
  • 148
  • 136
  • @zallarak: Customize templating system? It is open source. I have used it for different kinds of templating from html, text and as well as XML. It is quite generic. – pyfunc Jun 26 '12 at 00:03
  • Thank you for your response, that helps. Is there anything that sticks out about Jinja that contrasts with Cheetah? – zallarak Jun 26 '12 at 00:07
  • @zallarak: I have found Jinja2 easier to grasp and use – pyfunc Jun 26 '12 at 00:16
0

I like wheezy.template since it looks very similar to my python code. Its syntax is compact, expressive and clean. I was able to start right after a quick look at example. It amazing how intuitive it is. In addition it is fast.