vote up 1 vote down star

Does anyone know of a Python equivalent for FMPP the text file preprocessor?

Follow up: I am reading the docs and looking at the examples for the suggestions given. Just to expand. My usage of FMPP is to read in a data file (csv) and use multiple templates depending on that data to create multi page reports in html all linked to a main index.

flag
don't make such questions a community wiki – kender Jan 9 '09 at 6:55

4 Answers

vote up 1 vote down check

Let me add Mako Fine fast tool (and it even uses ${var} syntax).

Note: Mako, Jinja and Cheetah are textual languages (they process and generate text). I'd order them Mako > Jinja > Cheetah (in term of features and readability), but people's preferences vary.

Kid and it's successor Genshi are HTML/XML aware attribute languages (<div py:if="variable"> ... </div> etc ). That's completely different methodology - and tools suitable for HTML or XML only.

link|flag
Thank you for pointing out Mako it seems to have everything I need. – 1.01pm Jan 10 '09 at 23:27
vote up 1 vote down

I'm not sure exactly what FMPP does, but from a quick glance it seems like a template language.

Jinja2 is an excellent template system for python.

sample:

<ul>
    {% for item in list %}
    <li> {{ item.title }} </li>
    {% endfor %}
</ul>

{% if user.is_admin() %}
    <a href="./edit">Edit this page</a>
{% endif %}
link|flag
vote up 2 vote down

Python has lots of templating engines. It depends on your exact needs.

Jinja2 is a good one, for example. Kid is another.

link|flag
vote up 0 vote down

You could give Cheetah a try. I've used it before with some success.

link|flag

Your Answer

Get an OpenID
or

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