Template Processing Classes for Python

By Brad Howes

Dr. Dobb's Journal February 1998

>>> from BoilerPlate import String
>>> z = "Page %( HtmlEncode( '<' + Lower( Roman( foo ) ) + '>' ) )s"
>>> print String( z, foo = 14 )
Page &lt;xiv&gt;
>>>

Example 4: The format descriptor invokes three Formatter methods.

Back to Article


Copyright © 1998, Dr. Dobb's Journal