Daniel Fetchinson wrote:
> Maybe I found what I'm looking for: cheetah, a web server that is 600
> lines of C code and that's it :)
>
> http://freshmeat.net/projects/cheetahd/
For the sake of on-topicness, there is this:
#!/usr/bin/env python
# -*- coding: ASCII -*-
'''$Id$
'''
from BaseHTTPServer import HTTPServer
from SimpleHTTPServer import SimpleRequestHandler
handler = HTTPServer (('', 8000), SimpleRequestHandler)
handler.handle_forever()
Mel.
--
http://mail.python.org/mailman/listinfo/python-list