> oh, you can look 0.3 document.your test code is 
> old.http://webpy.org/tutorial3.en

Yes, that did the job. One or two changes from the original tutorial.
For the record:

import web

urls = (
        '/', 'index'
)

app = web.application(urls, globals())

class index:
        def GET(self):
                return "Hello Web.py"

if __name__ == "__main__": app.run()

Now I can get started :-)

-- 
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/webpy?hl=en.

Reply via email to