Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #20047

Re: standalone python web server

References <CAOF-KfgK0YcmqQ3BKS_2arX5-WVpk--Txq2dEQCTg7dy4V4LTw@mail.gmail.com>
From Rodrick Brown <rodrick.brown@gmail.com>
Subject Re: standalone python web server
Date 2012-02-08 23:12 -0500
Newsgroups comp.lang.python
Message-ID <mailman.5563.1328760741.27778.python-list@python.org> (permalink)

Show all headers | View raw


On Feb 8, 2012, at 11:01 PM, Rita <rmorgan466@gmail.com> 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 something easy to deploy meaning I would like to move the server from one physical host to another without too much fuss. 
> 
> Currently, I am using flask (development server) and everything is ok but the performance is really bad.
> 

Checkout TwistedWeb it's an HTTP server that can be used as a library or standalone server.

$ twistd web --path . --port 8080
> 
> 
> -- 
> --- Get your facts first, then you can distort them as you please.--
> -- 
> http://mail.python.org/mailman/listinfo/python-list

Back to comp.lang.python | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: standalone python web server Rodrick Brown <rodrick.brown@gmail.com> - 2012-02-08 23:12 -0500
  Re: standalone python web server Roy Smith <roy@panix.com> - 2012-02-08 23:31 -0500

csiph-web