Home | Trees | Indices | Help |
|
---|
|
object --+ | base.Template --+ | TextTemplate
Implementation of a simple text-based template engine.
>>> tmpl = TextTemplate('''Dear $name, ... ... We have the following items for you: ... #for item in items ... * $item ... #end ... ... All the best, ... Foobar''') >>> print tmpl.generate(name='Joe', items=[1, 2, 3]).render('text') Dear Joe, <BLANKLINE> We have the following items for you: * 1 * 2 * 3 <BLANKLINE> All the best, Foobar
Nested Classes | |
Inherited from |
Instance Methods | |
Inherited from Inherited from |
Class Variables | |
directives =
|
|
Inherited from |
Properties | |
Inherited from |
Class Variable Details |
directives
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Mon May 21 11:25:57 2007 | http://epydoc.sourceforge.net |