Offhand, I believe you can use the labeled column itself as an expression:
foobar = Foo.bar.label("foobar")
session.query(foobar).filter(foobar > 10).all()
Offhand, I believe you can use the labeled column itself as an expression:
foobar = Foo.bar.label("foobar")
session.query(foobar).filter(foobar > 10).all()