Mega Code Archive
A Script for Displaying the Environment
#!c:/Python25/python
from os import *
from cgi import *
print "Content-type: text/html\n\n"
print
print "These are the environment variables:
"
for key, value in environ.items():
print key, " = ", value, "
"