Mailing List Archive

Python Webserver
Hi

I don't know if I've dreamt, but I think I saw something about
a webserver written in Python. (It's not the embedded-in-Apache-thing
I'm thinking of)
Now I just can't seem to find it anywhere, so does someone know anything
about this. Hipshots are welcome. I thought it'd be something fun to
play with.

Thanks
-- Thomas S. Strinnhed, thstr@serop.abb.se
Python Webserver [ In reply to ]
* Thomas S. Strinnhed
|
| I don't know if I've dreamt, but I think I saw something about a
| webserver written in Python.

There's a very simple one in the standard distribution (actually, more
than one). And then there's Medusa:

<URL: http://www.nightmare.com/medusa/>

| I thought it'd be something fun to play with.

It is. Very much so, in fact. :)

--Lars M.
Python Webserver [ In reply to ]
"Thomas S. Strinnhed" wrote:
>
> Hi
>
> I don't know if I've dreamt, but I think I saw something about
> a webserver written in Python. (It's not the embedded-in-Apache-thing
> I'm thinking of)
> Now I just can't seem to find it anywhere, so does someone know anything
> about this. Hipshots are welcome. I thought it'd be something fun to
> play with.

go to http://www.nightmare.com/
and read about Medusa.
That's it.
--
Christian Tismer :^) <mailto:tismer@appliedbiometrics.com>
Applied Biometrics GmbH : Have a break! Take a ride on Python's
Kaiserin-Augusta-Allee 101 : *Starship* http://starship.python.net
10553 Berlin : PGP key -> http://wwwkeys.pgp.net
PGP Fingerprint E182 71C7 1A9D 66E9 9D15 D3CC D4D7 93E2 1FAE F6DF
we're tired of banana software - shipped green, ripens at home
Python Webserver [ In reply to ]
Lars Marius Garshol writes:
> There's a very simple one in the standard distribution (actually, more

Thanks to Moshe Zadka, these will be documented in the next release
of the documentation.
Thanks, Moshe!


-Fred

--
Fred L. Drake, Jr. <fdrake@acm.org>
Corporation for National Research Initiatives
Python Webserver [ In reply to ]
"Thomas S. Strinnhed" wrote:
>
> Hi
>
> I don't know if I've dreamt, but I think I saw something about
> a webserver written in Python. (It's not the embedded-in-Apache-thing
> I'm thinking of)
> Now I just can't seem to find it anywhere, so does someone know anything
> about this. Hipshots are welcome. I thought it'd be something fun to
> play with.
>
> Thanks
> -- Thomas S. Strinnhed, thstr@serop.abb.se

Is Zope the 'embedded-in-apache-thing' you refer to?
If so, you should note that it doesn't *need* apache, and can be used
seperately (I do it this way).

Zope 1.1x uses the Python httpserver mentioned in some of the other
posts, whereas zope 2.0.x(alpha!) uses Zserver, based on Medusa, as
mention in the other posts. :-)

--
Bill Anderson Linux Administrator
MCS-Boise (ARC) banderson@boi.hp.com
My opinions are just that; _my_ opinions.
Python Webserver [ In reply to ]
On Thu, 24 Jun 1999 21:13:13, Bill Anderson <banderson@boi.hp.com>
wrote:

> > I don't know if I've dreamt, but I think I saw something about
> > a webserver written in Python. (It's not the embedded-in-Apache-thing
> > I'm thinking of)
> > Now I just can't seem to find it anywhere, so does someone know anything
> > about this. Hipshots are welcome. I thought it'd be something fun to
> > play with.
>
> Is Zope the 'embedded-in-apache-thing' you refer to?
> If so, you should note that it doesn't *need* apache, and can be used
> seperately (I do it this way).
>
> Zope 1.1x uses the Python httpserver mentioned in some of the other
> posts, whereas zope 2.0.x(alpha!) uses Zserver, based on Medusa, as
> mention in the other posts. :-)

There is also a web server included in the python source library
(basehttpserver, simplehttpserver, cgihttpserver)

I'm also using those files as a basis for a slightly different
webserver
design.

- Benjamin