Is there a defacto template application for Python?
I am trying to auto generate C code for use in unit tests from python
My original approach using print statements is very clunky and error prone
It struck me that a template application such as those used in web app development might be a more elegant solution
My initial research seems to suggest Cheetah is a good option, however there seem to be many potential options
My requirements would be that it is reliable and simple - would Cheetah represent 'best practice' for this sort of application?