I am using sqlalchemy and i wonder if its possible to dynamically modify an attribute of a class while doing a query
if school == "abc":
school_data = (
meta.session.query(
model.School.name, <=== HERE
...
i want to be able to dynamically change .name. to another field, is it possible with python and sqlalchemy?