Re: Dumb-as-rocks WSGI serving using standard library

2006-05-22 Thread Damjan
> What I can't find is a simple recipe to serve a WSGI application with > a dumb-as-rocks HTTP server, just using the standard Python library. > > The standard library includes BaseHTTPServer, which as far as I can > tell doesn't know anything about WSGI. > > Everything else that I can find leads

Re: Dumb-as-rocks WSGI serving using standard library

2006-05-22 Thread Stephan Diehl
On Mon, 22 May 2006 18:18:34 +1000, Ben Finney wrote: [...] > > Everything else that I can find leads to dependencies I don't want for > flexibility I don't need: cherrypy, paste, et al. > > Any suggestions for how to serve up a simple WSGI application with > just the standard library? the easi