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
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.
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
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
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
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
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