You can also retrieve multiple items at once by passing a list of IDs to get_items():
Copy
Ask AI
# IDs of items to retrieveids = [1, 2, 3]# Retrieve items from the encrypted indexitems = index.get_items(ids)print(items)# Example items# [b'Hello!', b'World!', b'Cyborg!']