Which template technology should I use with CherryPy?

Ben Noland picture Ben Noland · Jun 14, 2009 · Viewed 8k times · Source

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

What template technology do you recommend I use?

Answer

Triptych picture Triptych · Jun 14, 2009

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.