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
I think I got it:
session.query(Object).filter(Object.column.op('regexp')(REGEX))