vote up 2 vote down star

I'm in the process of building a web application using cherrypy.

What template technology do you recommend I use?

flag

80% accept rate
1  
huh? define "view technology"? Technically "a browser" would answer your question. – SpliFF Jun 14 at 15:43
Do you mean a templating engine? – John Pirie Jun 14 at 15:53

5 Answers

vote up 5 vote down check

Do you mean View in MVC? I recommend you very nice template engine Jinja2.

link|flag
vote up 2 vote down

If you mean a templating engine, I've had some success using mako with cherrypy. They just seem to play nicely together.

Mako is extremely easy to get started with and customize, which is, I assume, also two of your major reasons for choosing cherrypy. The cherrypy official tutorial also uses mako, and you can see a simple sample application there.

link|flag
vote up 2 vote down

I like Cheetah.

link|flag
vote up 0 vote down

There is also Genshi Their tutorial is based on using cherrypy

link|flag
vote up 0 vote down

I like Genshi.

One reason that I like it is simply that the XML syntax looks much cleaner to me when mixed with HTML versus the text-level syntax of the other popular templating engines. For example, it's nice to be able to stick a py:for attribute on to output a table versus nesting messy #if or whatever lines.

Another reason is that because it's based on XML and treats your HTML as XML, it guarantees that your markup is syntactically correct -- i.e. that tags are closed and properly nested, special characters are properly escaped, etc.. Other templating engines will simply treat your HTML as text and output whatever you give it without the extra santity checks.

The main disadvantage of Genshi is that it is much slower than the faster text-based engines. However, its performance should be good enough for most sites. Unless you have a site that has a special need to render text/HTML at a super fast rate, the readability and syntax checking that Genshi provides probably outweigh the performance hit.

link|flag

Your Answer

Get an OpenID
or

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