Re: standalone python web server

2012-02-09 Thread Rita
yes, I would like to use a framework. I like the twisted method the user posted. Are there any examples of it using a framework, get/post, etc..? On Thu, Feb 9, 2012 at 6:28 AM, Thomas Bach wrote: > Rita writes: > > > I am building a small intranet website and I would like to use > > Python. I

Re: standalone python web server

2012-02-09 Thread Thomas Bach
Rita writes: > I am building a small intranet website and I would like to use > Python. I was wondering if there was a easy and medium performance > python based web server available. Are you going to use a framework? Most of these ship with a light web server implementation… You probably want

Re: standalone python web server

2012-02-08 Thread anon hung
>> I am building a small intranet website and I would like to use Python. I >> was wondering if there was a easy and medium performance python based web >> server available. I would like to run it on port :8080 since I wont have >> root access also I prefer something easy to deploy meaning I would

Re: standalone python web server

2012-02-08 Thread Roy Smith
In article , Rodrick Brown wrote: > On Feb 8, 2012, at 11:01 PM, Rita wrote: > > > I am building a small intranet website and I would like to use Python. I > > was wondering if there was a easy and medium performance python based web > > server available. I would like to run it on port :8080

Re: standalone python web server

2012-02-08 Thread Rodrick Brown
On Feb 8, 2012, at 11:01 PM, Rita wrote: > I am building a small intranet website and I would like to use Python. I was > wondering if there was a easy and medium performance python based web server > available. I would like to run it on port :8080 since I wont have root access > also I prefer

standalone python web server

2012-02-08 Thread Rita
I am building a small intranet website and I would like to use Python. I was wondering if there was a easy and medium performance python based web server available. I would like to run it on port :8080 since I wont have root access also I prefer something easy to deploy meaning I would like to move

Re: standalone python web server

2007-12-27 Thread Jason Earl
eric <[EMAIL PROTECTED]> writes: > Hi all, > > I want to setup simple python web server and I want it to just unzip > and run, without any installation steps (have no right to do it). > > I've tried to write by myself, however, I find I am getting into more > details like processing image file, di

Re: standalone python web server

2007-12-27 Thread Markus Gritsch
On 27/12/2007, eric <[EMAIL PROTECTED]> wrote: > Hi all, > > I want to setup simple python web server and I want it to just unzip > and run, without any installation steps (have no right to do it). > > I've tried to write by myself, however, I find I am getting into more > details like processing i

Re: standalone python web server

2007-12-27 Thread Tim Chase
> Actually, I've considered to use django, however it required to run > command (which I don't have right to do it) > python setup.py install > > Btw, is it possible to use without running setup.py ? Yes, it's quite possible...Django is pure Python, so you just have to have its directory in

Re: standalone python web server

2007-12-27 Thread Diez B. Roggisch
eric schrieb: > On Dec 27, 4:52 pm, Panos Laganakos <[EMAIL PROTECTED]> wrote: >> On Dec 27, 7:41 am, eric <[EMAIL PROTECTED]> wrote: >> >>> Hi all, >>> I want to setup simple python web server and I want it to just unzip >>> and run, without any installation steps (have no right to do it). >>> I'v

Re: standalone python web server

2007-12-27 Thread eric
On Dec 27, 6:22 pm, Bjoern Schliessmann wrote: > eric wrote: > > I want to setup simple python web server and I want it to just > > unzip and run, without any installation steps (have no right to do > > it). > > Which OS? You might run into authorisation problems if you want it > to listen on port

Re: standalone python web server

2007-12-27 Thread eric
On Dec 27, 4:52 pm, Panos Laganakos <[EMAIL PROTECTED]> wrote: > On Dec 27, 7:41 am, eric <[EMAIL PROTECTED]> wrote: > > > Hi all, > > > I want to setup simple python web server and I want it to just unzip > > and run, without any installation steps (have no right to do it). > > > I've tried to wri

Re: standalone python web server

2007-12-27 Thread Bjoern Schliessmann
eric wrote: > I want to setup simple python web server and I want it to just > unzip and run, without any installation steps (have no right to do > it). Which OS? You might run into authorisation problems if you want it to listen on port 80 TCP. Regards, Björn -- BOFH excuse #303: fractal ra

Re: standalone python web server

2007-12-27 Thread Jarek Zgoda
eric napisał(a): > I want to setup simple python web server and I want it to just unzip > and run, without any installation steps (have no right to do it). Look at SimpleHTTPServer in standard library. > I've tried to write by myself, however, I find I am getting into more > details like process

Re: standalone python web server

2007-12-27 Thread Panos Laganakos
On Dec 27, 7:41 am, eric <[EMAIL PROTECTED]> wrote: > Hi all, > > I want to setup simple python web server and I want it to just unzip > and run, without any installation steps (have no right to do it). > > I've tried to write by myself, however, I find I am getting into more > details like process

Re: standalone python web server

2007-12-26 Thread rishi pathak
See if this helps www.*django*project.com On 12/27/07, eric <[EMAIL PROTECTED]> wrote: > > Hi all, > > I want to setup simple python web server and I want it to just unzip > and run, without any installation steps (have no right to do it). > > I've tried to write by myself, however, I find I am g

standalone python web server

2007-12-26 Thread eric
Hi all, I want to setup simple python web server and I want it to just unzip and run, without any installation steps (have no right to do it). I've tried to write by myself, however, I find I am getting into more details like processing image file, different file type(like FLV) .. etc. Any recomm