Trying to write CGI script with python...

Peter Otten __peter__ at web.de
Sun May 1 03:10:12 EDT 2005


M.E.Farmer wrote:

> I found an excellent example that was posted by the F-bot.
> Fredrik Lundh            May 26 2000

Python has since grown the cgitb module. Putting

import cgitb; cgitb.enable()

at the top of your cgi script may be even more convenient than using the
Lundhian wrapper.

Peter



More information about the Python-list mailing list