Quoting Alec Taylor <alec.tayl...@gmail.com>
They look good, but I'm looking for something which can "compile" down to normal SQL code. So that I can just plug that .sql file into any environment [i.e. non-python env]
SQLalchemy will happily give you statements and argument lists if that is what you want.
query = db.query(Task).filter(Task.objectid==10100) print str(query) -- http://mail.python.org/mailman/listinfo/python-list