Print environ.cgi

From XPUB & Lens-Based wiki
Revision as of 18:10, 19 January 2009 by Michael Murtaugh (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Python's cgi module has a built in function to "dump" the entire environment of an HTTP request. Quite useful for debugging.

import cgi
fs = cgi.FieldStorage()

print "Content-type: text/html"
print

fs.print_environ()