Re: Running a Python script on a web server

2011-06-08 Thread Abhijeet Mahagaonkar
Python doesn't normally run in a web browser. There's two easy options: Is there an option of running it like php? I have never written in php, but my understanding is that the php script will be saved in some remote server and we will be able to run it using the url. pls correct me if i;m wrong.

Re: Running a Python script on a web server

2011-06-08 Thread Chris Angelico
On Wed, Jun 8, 2011 at 3:52 PM, Abhijeet Mahagaonkar abhijeet.mano...@gmail.com wrote: Python doesn't normally run in a web browser. There's two easy options: Is there an option of running it like php? I have never written in php, but my understanding is that the php script will be saved in

Re: Running a Python script on a web server

2011-06-08 Thread D'Arcy J.M. Cain
On Wed, 8 Jun 2011 11:22:53 +0530 Abhijeet Mahagaonkar abhijeet.mano...@gmail.com wrote: Python doesn't normally run in a web browser. There's two easy options: Is there an option of running it like php? I have never written in php, but my understanding is that the php script will be saved in

Re: Running a Python script on a web server

2011-06-08 Thread Abhijeet Mahagaonkar
I guess i got my answer :) Thanks Regards, Abhijeet On Wed, Jun 8, 2011 at 12:01 PM, D'Arcy J.M. Cain da...@druid.net wrote: On Wed, 8 Jun 2011 11:22:53 +0530 Abhijeet Mahagaonkar abhijeet.mano...@gmail.com wrote: Python doesn't normally run in a web browser. There's two easy options:

Running a Python script on a web server

2011-06-07 Thread Abhijeet Mahagaonkar
Dear Pythoners, I have written a few python tools and cant distribute as exe due to scalability issues. I started with a few tools and gave it as exe to the users and now as the number of tools have increased, they complain they have too many exes :) So i have requested a server space so I need

Re: Running a Python script on a web server

2011-06-07 Thread Chris Angelico
On Wed, Jun 8, 2011 at 1:10 PM, Abhijeet Mahagaonkar abhijeet.mano...@gmail.com wrote: So i have requested a server space so I need some inputs on how i will be able to host these scripts on a webserver and have them run on browsers rather than on individual systems. Python doesn't normally

Re: Running a Python script on a web server

2011-06-07 Thread Nitin Pawar
There are few options available with mod_python + apache configuration but it comes with limitation as the scripts will be running on servers and you will need to parse the requests and inputs as a web request to the script On Wed, Jun 8, 2011 at 9:34 AM, Chris Angelico ros...@gmail.com wrote: