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
&
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
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)
3 matches
Mail list logo