i'm trying to check existence of an hash_key in dynamodb with boto (i can not update my filed if exist) i've try with query
for i in self.table.query(hask_key=[value]):
print i['url']
But i miss an argument (???). I've try with scan but i need to check my hash_key, not attributes.
I've try with get_item but i cannot manage the response if hash_key does not exist.
Any advice?
I've play with redis and it have exist method.