Skip to main content

contains

async def contains(keys: tuple) -> List[str]
ParamDescription
keysKeys to check

Given a tuple of keys, returns the keys which exist.

Returns

The keys that exist

Raises

  • ResponseError if query fails

Examples

await kv.set({'k1':10, 'k2':20})
exist = await kv.contains(('k1','k2','k3'))

print(exist) # ['k1', 'k2']