Python Database Driven Web Development

Thomas Guettler guettli at thomas-guettler.de
Fri Mar 5 03:44:26 EST 2004


Am Thu, 04 Mar 2004 14:20:39 -0500 schrieb Maru, Mulugeta:

> What do I need other than Python, Apache, and MySQL to develop a
> database driven intranet?
> Do I need to use any framework or application server?
> If I do please kindly direct me where to go. 

Yes, you need something that maps an HTTP-Request
to a method call.

I use quixote[1] because it is small and simple.
I even don't use the form library of quixote.
If you have more logic than HTML, it is better
to use python syntax:

def foo(request):
    ret=[]
    ret.append(header())
    ret.append(....)
    ret.append(footer())
    return ''.join(ret) 



[1] http://www.mems-exchange.org/software/quixote/




More information about the Python-list mailing list