I have a SQLAlchemy query which is iterable, let's say it's an object called query. When you iterate over it you get items like this:
Table1('Column1', 'Column2')
When you join tables on the query object and then iterate over it, you get tuples instead:
(Table1('Column1', 'Column2'), Table2('Column3', 'Column4'))
I know I can use a generator to iterate over the query object, like this:
(each[0] for each in query)
But this doesn't preserve any of the other methods on object query, it turns it into a generator object. Is there an easy way to change the behavior of the iteration part of query while leaving the rest of the methods alone?