Re: Python3 on the Web

2009-03-09 Thread Tim Roberts
Johannes Permoser wrote: > >But what's the way to bring python3 to the Web? >mod_python isn't available, cgi is said to be slow, mod_wsgi looks >complicated... Ordinary CGI has, in my opinion, an undeserved bad rap. If you're going to be making a web site that has to handle 100 hits a second, th

Re: Python3 on the Web

2009-03-07 Thread Paul Rubin
Tim Roberts writes: > At that level of load, CGI is perfectly workable, and it's certainly the > easiest of the choices for development and exploration. One problem of CGI even at very low loads is that it's harder to handle the case where two hits arrive at the same time and want to save data.

Re: Python3 on the Web

2009-03-05 Thread John Nagle
Jean-Paul Calderone wrote: On Thu, 05 Mar 2009 18:13:05 +0100, Johannes Permoser wrote: Hi, I wanted to learn Python from scratch and start off with Version 3. Since I already know PHP very well, I thought it would be nice to start off with a small web-project. But what's the way to bring pyt

Re: Python3 on the Web

2009-03-05 Thread Graham Dumpleton
On Mar 6, 4:13 am, Johannes Permoser wrote: > Hi, > > I wanted to learn Python from scratch and start off with Version 3. > Since I already know PHP very well, I thought it would be nice to start > off with a small web-project. > > But what's the way to bring python3 to the Web? > mod_python isn't

Re: Python3 on the Web

2009-03-05 Thread Christian Heimes
Johannes Permoser wrote: > But what's the way to bring python3 to the Web? > mod_python isn't available, cgi is said to be slow, mod_wsgi looks > complicated... WSGI is the right way to go. It's *the* Python standard for web application interfaces. You don't need mod_wsgi and Apache to run a WSGI

Re: Python3 on the Web

2009-03-05 Thread Bruno Desthuilliers
Johannes Permoser a écrit : Hi, I wanted to learn Python from scratch and start off with Version 3. Since I already know PHP very well, I thought it would be nice to start off with a small web-project. But what's the way to bring python3 to the Web? mod_python isn't available, cgi is said to be

Re: Python3 on the Web

2009-03-05 Thread Jean-Paul Calderone
On Thu, 05 Mar 2009 18:13:05 +0100, Johannes Permoser wrote: Hi, I wanted to learn Python from scratch and start off with Version 3. Since I already know PHP very well, I thought it would be nice to start off with a small web-project. But what's the way to bring python3 to the Web? mod_python

Python3 on the Web

2009-03-05 Thread Johannes Permoser
Hi, I wanted to learn Python from scratch and start off with Version 3. Since I already know PHP very well, I thought it would be nice to start off with a small web-project. But what's the way to bring python3 to the Web? mod_python isn't available, cgi is said to be slow, mod_wsgi looks complica