http://www.sqlalchemy.org/docs/reference/orm/sessions.html
I don't see anything for updating an object that was just retrieved from the database using:
q = session.query(products)
for p in q:
p.blah = 'hello'
sesion.????
session.commit()