http://webpy.org/tutorial

>From the home page:
"
import web

urls = (
    '/(.*)', 'hello'
)

class hello:
    def GET(self, name):
        if not name: name = 'world'
        web.header('Content-Type', 'text/plain')
        web.output('Hello, '+name+'!')

if __name__ == "__main__": web.run(urls)
"

Looks kinda like django.  :)

Reply via email to