Re: Web Server for Python

2013-12-16 Thread Denis McMahon
On Mon, 16 Dec 2013 19:20:20 -0800, Mura Zalukhu wrote: > Could you give me the best tutorial / web for python. For example how to > make a connection with database. Which database? Which version of Python? Google may help. So will the Python on-line documentation. -- Denis McMahon, denismfmcm

Re: Web Server for Python

2013-12-16 Thread Mura Zalukhu
Hi David, Thanks for your reply, i will learn it. Could you give me the best tutorial / web for python. For example how to make a connection with database. Thanks so much On Tuesday, December 17, 2013 9:40:56 AM UTC+7, david@gmail.com wrote: > Hi Mura, > > > apache is used as a proxy with p

Re: Web Server for Python

2013-12-16 Thread david.gar...@gmail.com
Hi Mura, apache is used as a proxy with python. You would fire up your python web app and put apache in front of it. Apache does come these days with wsgi https://code.google.com/p/modwsgi/ that can be added to apache as module, something like mod_wsgi can be used for your python web app. PHP is a

Re: Web Server

2008-07-23 Thread misceverything
Thanks, guys..I think I am going to go the route Fredrik suggested. Thanks for all your help! -- http://mail.python.org/mailman/listinfo/python-list

Re: Web Server

2008-07-21 Thread Fredrik Lundh
James Tanis wrote: there's also apache, of course, and a bunch of others, including several Python solutions (more or less pre-packaged). but the "open up" part still sounds a bit risky. maybe you could turn things around, and let the application "push" data to your server instead? Either

Re: Web Server

2008-07-20 Thread James Tanis
"Fredrik Lundh" <[EMAIL PROTECTED]> wrote: > there's also apache, of course, and a bunch of others, including several > Python solutions (more or less pre-packaged). but the "open up" part > still sounds a bit risky. maybe you could turn things around, and let > the application "push" data to

Re: Web Server

2008-07-20 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: Thanks, Fredrik - that definitely works. Now to get a little greedy - is there something along those lines that is a bit more secure (i.e. allows HTTPS, possibly with authentication)? Basically something that you would feel more comfortable opening up to the Internet..

Re: Web Server

2008-07-20 Thread James Tanis
[EMAIL PROTECTED] wrote: > Thanks, Fredrik - that definitely works. Now to get a little greedy - > is there something along those lines that is a bit more secure (i.e. > allows HTTPS, possibly with authentication)? Basically something that > you would feel more comfortable opening up to the Inter

Re: Web Server

2008-07-20 Thread misceverything
Thanks, Fredrik - that definitely works. Now to get a little greedy - is there something along those lines that is a bit more secure (i.e. allows HTTPS, possibly with authentication)? Basically something that you would feel more comfortable opening up to the Internet.. -- http://mail.python.org/

Re: Web Server

2008-07-20 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: As part of a Python app I wrote recently (for Windows), I would like to give the option of an HTTP (HTTPS if possible, but not necessary) front end, which would then call some existing python scripts. My question is - I know I can write a simple HTTP server in Python, b

Re: Web server platform for beginner

2005-05-16 Thread Chris
If only i'd seen that page ;-) Thanks for the heads up Cheers, - Chris. -- http://mail.python.org/mailman/listinfo/python-list

Re: Web server platform for beginner

2005-05-16 Thread Irmen de Jong
Chris wrote: > Hi, > > I'm looking at python as a serious alternative for Windows Forms, C# > and ASP.Net as it is completely open source. > > I've determined that wxPython is the best replacement for Windows Forms > but have not managed to find a comprehensive list of all the web > platforms tha

Re: Web server platform for beginner

2005-05-16 Thread kdahlhaus
Chris, CherryPy 2 is very easy to get started with. -- http://mail.python.org/mailman/listinfo/python-list