Re: Web.py

2005-12-06 Thread Bryan Murdock
On 12/6/05, Daniel Ericsson <[EMAIL PROTECTED]> wrote: > > On 6 dec 2005, at 23.35, Jeremy Dunck wrote: > > > http://webpy.org/tutorial > ... > > Looks kinda like django. :) > > Actually the requirement specification for web.py is in the django > trac :P &

Re: Web.py

2005-12-06 Thread Daniel Ericsson
On 6 dec 2005, at 23.35, Jeremy Dunck wrote: http://webpy.org/tutorial ... Looks kinda like django. :) Actually the requirement specification for web.py is in the django trac :P http://code.djangoproject.com/search? q=aaronsw&wiki=on&changeset=on&ticket=on - Daniel

Web.py

2005-12-06 Thread Jeremy Dunck
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)