From lists at genoverly.net Fri May 6 18:06:48 2005 From: lists at genoverly.net (michael) Date: Tue Mar 4 07:27:37 2008 Subject: [python] mod_python Message-ID: <20050506180648.2c3a6d17@delinux.abwatley.com> Hey, Has anyone on the list made use of mod_python? http://www.modpython.org/ I was patching an old development server and noticed I had installed it several years ago but never really got beyond hello-world. Is this something worth pursueing, or should I stick with more traditional server side scripting? Michael -- --- From bob at redivi.com Fri May 6 18:28:11 2005 From: bob at redivi.com (Bob Ippolito) Date: Tue Mar 4 07:27:37 2008 Subject: [python] mod_python In-Reply-To: <20050506180648.2c3a6d17@delinux.abwatley.com> References: <20050506180648.2c3a6d17@delinux.abwatley.com> Message-ID: <839DC1B4-2A15-4104-BCD3-464138E87FFB@redivi.com> On May 6, 2005, at 6:06 PM, michael wrote: > Has anyone on the list made use of mod_python? http:// > www.modpython.org/ Years ago. > I was patching an old development server and noticed I had > installed it > several years ago but never really got beyond hello-world. > > Is this something worth pursueing, or should I stick with more > traditional server side scripting? Some kind of persistent cgi (fastcgi, etc.) or ProxyPass is generally a better way to integrate dynamic code with Apache. That's what just about everything does these days, mod_python isn't that popular and it reduces the stability of the server. -bob From ike at lesmuug.org Fri May 6 21:29:43 2005 From: ike at lesmuug.org (Isaac Levy) Date: Tue Mar 4 07:27:37 2008 Subject: [python] mod_python In-Reply-To: <839DC1B4-2A15-4104-BCD3-464138E87FFB@redivi.com> References: <20050506180648.2c3a6d17@delinux.abwatley.com> <839DC1B4-2A15-4104-BCD3-464138E87FFB@redivi.com> Message-ID: <133a961f4cad32d7fb033075cb32f172@lesmuug.org> Hi Michael, Wow- list traffic here! We gotta take more advantage, I nearly forget this list exists! (Sooooo much python stuff out there...) On May 6, 2005, at 6:28 PM, Bob Ippolito wrote: > On May 6, 2005, at 6:06 PM, michael wrote: > >> Has anyone on the list made use of mod_python? >> http://www.modpython.org/ > > Years ago. Same here- it's been a while. > >> I was patching an old development server and noticed I had installed >> it >> several years ago but never really got beyond hello-world. >> >> Is this something worth pursueing, or should I stick with more >> traditional server side scripting? > > Some kind of persistent cgi (fastcgi, etc.) or ProxyPass is generally > a better way to integrate dynamic code with Apache. That's what just > about everything does these days, mod_python isn't that popular and it > reduces the stability of the server. I'll toss in some of the same sentiment here. A *lot* more fun, sane, and stable server working enviornment can be had with pcgi, or writing small daemons using python (using ProxyPass or rewrite rules to proxy the daemons with Apache [the latter is more useful/comfortable to me, from years of zope use and dev- makes it simple to scale servers out across hardwares etc...). my .02? - but noteworthy, I simply haven't had a dev. problem I've thought would be cleanly solved using Mod Python, so there's bound to be *someone* who loves it to death... Rocket- .ike