Re: [Web-SIG] IIS and Python CGI - how do I see more than just the form data?

2010-04-06 Thread J.D. Main
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

[Web-SIG] SQLAlchemy Queries & HTML Data Grid

2010-04-06 Thread Randy Syring
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