Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #20047 > unrolled thread
| Started by | Rodrick Brown <rodrick.brown@gmail.com> |
|---|---|
| First post | 2012-02-08 23:12 -0500 |
| Last post | 2012-02-08 23:31 -0500 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
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
| From | Rodrick Brown <rodrick.brown@gmail.com> |
|---|---|
| Date | 2012-02-08 23:12 -0500 |
| Subject | Re: standalone python web server |
| Message-ID | <mailman.5563.1328760741.27778.python-list@python.org> |
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
[toc] | [next] | [standalone]
| From | Roy Smith <roy@panix.com> |
|---|---|
| Date | 2012-02-08 23:31 -0500 |
| Message-ID | <roy-2A8670.23315408022012@news.panix.com> |
| In reply to | #20047 |
In article <mailman.5563.1328760741.27778.python-list@python.org>, Rodrick Brown <rodrick.brown@gmail.com> wrote: > 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 > Another one to look at is gunicorn.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web