Is it possible to use a regex in a way similar to session.query(MyObject).filter_by(REGEX)?
session.query(MyObject).filter_by(REGEX)
If not, how can I use sqlAlchemy to retrieve records that ha
For the record, you can do essentially the same syntax as Paulo Scardine's answer in SQLAlchemy too;
session.query(Object).filter(Object.column.like('something%'))