Thanks Aaron,
I think I will explore the WSGI interface. However, I did learn a trick using
the OS Module:
import cgi, os
formfields = cgi.FieldStorage()
http_stuff = os.environ
print "Content-type: text/html"
print
print ""
print ""
print "Raw HTTP Test"
print ""
print ""
print formfields
p
I am planning on building a library that will facilitate creation of
custom queries and html display of resulting datasets from SQLAlechemy
queries. I have some basic work done here:
https://svn.rcslocal.com:8443/svn/pysmvt/pysapp/branches/0.1/pysapp/modules/datagrid/
But I don't like the API