> file.py
> from genshi.template import TemplateLoader
> loader = TemplateLoader(['.'], auto_reload=True)
> tmpl = loader.load('hello.html')
> stream = tmpl.generate(name='world', times=2)
> print stream.render('html')
> hello.html
> <!DOCTYPE html
> PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"
> xmlns:py="http://genshi.edgewall.org/">
> <body>
> <h1>web.py with Genshi</h1>
> <hr />
> <ul py:if="times">
> <li py:for="i in range(times)">Hello, $name!</li>
> </ul>
> </body>
> </html>
> this is one of examples...just uploaded it to appengine with trunk
> genshi and it works(i dont know how about latest release, but trunk
> version works)
> 2009/12/4 Japboy <poa...@gmail.com>:
> > wonder how i do it?
> > On Dec 4, 11:40 pm, retif <noverm...@gmail.com> wrote:
> >> genshi is working on appengine!!)))
> >> On Nov 22, 7:47 pm, retif <noverm...@gmail.com> wrote:
> >> > so we have working genshi on appengine today?)
> > --
> > You received this message because you are subscribed to the Google Groups "Genshi" group.
> > To post to this group, send email to genshi@googlegroups.com.
> > To unsubscribe from this group, send email to genshi+unsubscribe@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/group/genshi?hl=en.