RE: Looking for very light weight template library (not framework)

2008-03-11 Thread Sells, Fred
t; To: python-list@python.org > Subject: Looking for very light weight template library (not > framework) > > > New to Python and looking for a template library that allows Python > expressions embedded in strings to be evaluated in place. In > other words > something more

Re: Looking for very light weight template library (not framework)

2008-03-07 Thread Stefan Behnel
Jeff McNeil wrote: > Isn't there some long > running joke about new Python programmers creating their own template > language or something, too? =) http://article.gmane.org/gmane.comp.python.general/544922 Stefan -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for very light weight template library (not framework)

2008-03-07 Thread Roman Bertle
* Malcolm Greene <[EMAIL PROTECTED]>: > New to Python and looking for a template library that allows Python > expressions embedded in strings to be evaluated in place. In other words > something more powerful than the basic "%(variable)s" or "$variable" > (Template) capabilities. [...] > > Us

Re: Looking for very light weight template library (not framework)

2008-03-07 Thread Duncan Booth
"Malcolm Greene" <[EMAIL PROTECTED]> wrote: > New to Python and looking for a template library that allows Python > expressions embedded in strings to be evaluated in place. In other words > something more powerful than the basic "%(variable)s" or "$variable" > (Template) capabilities. > > I kno

Re: Looking for very light weight template library (not framework)

2008-03-06 Thread Bernard
Cheetah! Cheetah! Cheetah! On 6 mar, 20:56, "Malcolm Greene" <[EMAIL PROTECTED]> wrote: > New to Python and looking for a template library that allows Python > expressions embedded in strings to be evaluated in place. In other words > something more powerful than the basic "%(variable)s" or "$vari

Re: Looking for very light weight template library (not framework)

2008-03-06 Thread Jeff McNeil
Cheetah (http://www.cheetahtemplate.org/) and Mako (http://www.makotemplates.org/) come to mind. Isn't there some long running joke about new Python programmers creating their own template language or something, too? =) I know you said you don't want a web framework, but I've always been a fan of

Re: Looking for very light weight template library (not framework)

2008-03-06 Thread Carl Banks
On Mar 6, 8:56 pm, "Malcolm Greene" <[EMAIL PROTECTED]> wrote: > New to Python and looking for a template library that allows Python > expressions embedded in strings to be evaluated in place. In other words > something more powerful than the basic "%(variable)s" or "$variable" > (Template) capabil

Re: Looking for very light weight template library (not framework)

2008-03-06 Thread Erik Max Francis
Malcolm Greene wrote: > New to Python and looking for a template library that allows Python > expressions embedded in strings to be evaluated in place. In other words > something more powerful than the basic "%(variable)s" or "$variable" > (Template) capabilities. > > I know that some of the web

Looking for very light weight template library (not framework)

2008-03-06 Thread Malcolm Greene
New to Python and looking for a template library that allows Python expressions embedded in strings to be evaluated in place. In other words something more powerful than the basic "%(variable)s" or "$variable" (Template) capabilities. I know that some of the web frameworks support this type of tem