view examples/webpy/hello.py @ 271:b5b2a84e4b71

Still too much whitespace in the [WebPy web.py] example. Switch to printing the whole output at once.
author cmlenz
date Wed, 27 Sep 2006 09:22:46 +0000
parents a1adae30bfeb
children 42c6cfdd5582
line wrap: on
line source
import os
from genshi.template import TemplateLoader
import web

loader = TemplateLoader([os.path.dirname(os.path.abspath(__file__))],
                        auto_reload=True)
urls = ('/(.*)', 'hello')


class hello(object):

    def GET(self, name):
        i = web.input(times=1)
        if not name:
            name = 'world'
        name = name.decode('utf-8')

        tmpl = loader.load('hello.html')
        stream = tmpl.generate(name=name, times=int(i.times))

        web.header('Content-Type', 'text/html; charset=utf-8', unique=True)
        print stream.render('html')


if __name__ == '__main__':
    web.internalerror = web.debugerror
    web.run(urls)
Copyright (C) 2012-2017 Edgewall Software