summaryrefslogtreecommitdiffstats
path: root/Demo/cgi/cgi2.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-10-16 21:01:27 (GMT)
committerGuido van Rossum <guido@python.org>2002-10-16 21:01:27 (GMT)
commit68077210c2588241fc5e4e16d83c083fa4103108 (patch)
tree118f4313ced095fd6b640ac6f9133e216692e2a5 /Demo/cgi/cgi2.py
parent60a5d72908a8422d15452356892fe592c80dad33 (diff)
downloadcpython-68077210c2588241fc5e4e16d83c083fa4103108.zip
cpython-68077210c2588241fc5e4e16d83c083fa4103108.tar.gz
cpython-68077210c2588241fc5e4e16d83c083fa4103108.tar.bz2
Some really simple cgi examples. cgi3 is a MiniWiki.
Diffstat (limited to 'Demo/cgi/cgi2.py')
-rwxr-xr-xDemo/cgi/cgi2.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/Demo/cgi/cgi2.py b/Demo/cgi/cgi2.py
new file mode 100755
index 0000000..d956f65
--- /dev/null
+++ b/Demo/cgi/cgi2.py
@@ -0,0 +1,22 @@
+#!/usr/local/bin/python
+
+"""CGI test 2 - basic use of cgi module."""
+
+import cgitb; cgitb.enable()
+
+import cgi
+
+def main():
+ form = cgi.FieldStorage()
+ print "Content-type: text/html"
+ print
+ if not form:
+ print "<h1>No Form Keys</h1>"
+ else:
+ print "<h1>Form Keys</h1>"
+ for key in form.keys():
+ value = form[key].value
+ print "<p>", cgi.escape(key), ":", cgi.escape(value)
+
+if __name__ == "__main__":
+ main()