skip to navigation
skip to content

coima 0.0.2

Extremely plain and simple template engine for text files

Downloads ↓

Small template engine that replaces variables via dictionary values:

cat file.txt
"This is a {{variable}} in a {{string}}"

from coima import Template
t = Template({'variable':'word', 'string':'sentence'}, 'file.txt')

t.render()

u"This is a word in a sentence"

Syntax

No Python or code blocks are allowed, this is basically a dumb templating engine.

Variables should be a one word or 2 words together with an underscore. These are valid variables:

{{variable}} {{variable_one}}

Invalid variables are left 'as is' and left in the final rendered template.

 
File Type Py Version Uploaded on Size # downloads
coima-0.0.2.tar.gz (md5) Source 2010-12-05 5KB 441