I have a dict like:
{'a': 1, 'b':2, ... }
and an sql alchemy expression like
s = select([some columns]\
.where(put here my dict with a==1 and b==2 and ...)\
.group_by(*[some columns])
but I do not find the correct syntax for the "where" part.
What is the correct way to do this?