I spent time last weekend writing a little CGI script. I quickly yearned for all the goodies Quixote provides. Unfortunately setting up a full-blown Quixote application seemed like overkill. Here's what I came up with: http://www.mems-exchange.org/software/files/tmp/run_cgi.py Here's a 4 line CGI script that uses it: #!/www/python/bin/python /home/nascheme/quixote/run_cgi.py _q_exports = [] def _q_index(request): return 'hello world' I think I'll include it in the next Quixote release. Neil