I have a pretty standard many-to-many relationship, similar to the Blog -> Keyword relationship in the ORM tutorial.
I would like to query for a list of Keywords, re
I think you just want
.filter(Blog.keywords.any(Keyword.name.in_(['keyword1', 'keyword2', ...])))
I'm using http://www.sqlalchemy.org/docs/05/ormtutorial.html#common-filter-operators for reference