python simple web server

2012-03-06 Thread queency jones
hello pythonist i'm developing using the simple / basic http server i got very bad performance regarding to request time . 9 sec for each request replay. i tried to test this with this: python -m SimpleHTTPServer 8080 but no better. any sugestions ? that i can use ? my final goal is to serv 5 pe

Re: simple web-server

2008-03-28 Thread Bernard
Did you take a look at web.py? That one looks terribly small and efficient :) We use CherryPy coupled with compiled Cheetah Templates for every web server based projects at my workplace and we've been really satisfied with it so far. On 28 mar, 07:53, "Pavol Murin" <[EMAIL PROTECTED]> wrote: > he

Re: simple web-server

2008-03-28 Thread Gabriel Genellina
En Fri, 28 Mar 2008 08:53:15 -0300, Pavol Murin <[EMAIL PROTECTED]> escribió: > could you point me to a very simple (single file is best) web-server? > I want to serve a few web-forms and run some shell scripts when the > forms are submitted. I might add Ajax later (this is not a > requirement,

Re: simple web-server

2008-03-28 Thread Thomas Guettler
orts forms it's OK). If you want to run shell scripts, you might want to search for a web server written in a shell script Running shell scripts which process CGI input are very insecure. It may be possible to write secure shell scripts, but I think it is not worth the trouble. Djang

Re: simple web-server

2008-03-28 Thread Larry Bates
On Fri, 2008-03-28 at 12:53 +0100, Pavol Murin wrote: > hello python users, > > could you point me to a very simple (single file is best) web-server? > I want to serve a few web-forms and run some shell scripts when the > forms are submitted. I might add Ajax later (this is not a > requirement,

simple web-server

2008-03-28 Thread Pavol Murin
hello python users, could you point me to a very simple (single file is best) web-server? I want to serve a few web-forms and run some shell scripts when the forms are submitted. I might add Ajax later (this is not a requirement, if it only supports forms it's OK). Longer story: I would like

RE: I want to set up a simple web server

2007-12-27 Thread lloyd
Hi, Try Karrigell (http://karrigell.sourceforge.net/) > 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

Re: Basic Auth for simple web server

2007-06-07 Thread Marco Aloisio
Thanks -- Marco Aloisio -- http://mail.python.org/mailman/listinfo/python-list

Re: Basic Auth for simple web server

2007-06-06 Thread John J. Lee
Marco Aloisio <[EMAIL PROTECTED]> writes: > Hi, I'm a Python newbie; > I have to write a simple webserver, and I need to > implement a basic authentication as specified in the RFC2617. > I wonder if there is a Python library for doing that. twisted.web2 is one. John -- http://mail.python.org

Re: Basic Auth for simple web server

2007-06-05 Thread Michele Simionato
On Jun 5, 4:28 pm, Marco Aloisio <[EMAIL PROTECTED]> wrote: > Hi, I'm a Python newbie; > I have to write a simple webserver, and I need to > implement a basic authentication as specified in the RFC2617. > I wonder if there is a Python library for doing that. > > Thanks! > > -- > Marco Aloisio Hav

Basic Auth for simple web server

2007-06-05 Thread Marco Aloisio
Hi, I'm a Python newbie; I have to write a simple webserver, and I need to implement a basic authentication as specified in the RFC2617. I wonder if there is a Python library for doing that. Thanks! -- Marco Aloisio -- http://mail.python.org/mailman/listinfo/python-list