I am reading official docs http://boto3.readthedocs.io/en/latest/_modules/boto3/dynamodb/conditions.html
You can create a condition like this:
Attr(key).eq(value)
Where you check if value equals to key's value using class Attr() with eq method.
But how do you use a SQL IN operator?
I would like to query if value IN key's value
At the docs it just appear an In class and I dont see any example or how to use it
class In(ComparisonCondition):
expression_operator = 'IN'
has_grouped_values = True