I have grown tired of all the little issues with paste template, it's horrible to maintain the templates, it has no way of updating an old project and it's very hard to test.

I'm wondering if someone knows of an alternative for quickstart generators as they have proven to be useful.

link|improve this question

36% accept rate
Ah, yes, you're correct. I did assume paste.template to be a template engine. If it helps any, I don't think there's a replacement for paste.template; Paste is a fairly specialized library with few (if any?) competitors or alternatives. – Hao Lian May 8 '09 at 13:51
Checkout this alpha-level project: github.com/trentm/boilerplate – Sridhar Ratnakumar Nov 23 '10 at 7:24
feedback

1 Answer

I haven't used paste templates, so I'm not sure how it compares, but Mako seems like a fairly good system.

A snippet of the template language from their front page:

<%inherit file="base.html"/>
<%
    rows = [[v for v in range(0,10)] for row in range(0,10)]
%>
<table>
    % for row in rows:
        ${makerow(row)}
    % endfor
</table>

<%def name="makerow(row)">
    <tr>
    % for name in row:
        <td>${name}</td>\
    % endfor
    </tr>
</%def>
link|improve this answer
See the above comment. My problem is with the tool that uses the templates rather than the template code itself. – Jorge Vargas May 6 '09 at 11:26
feedback

Your Answer

 
or
required, but never shown

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