Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/msgspec/msgspec
/ list_keys
Method
list_keys
examples/asyncio-kv/kv.py:166–168 ·
view source on GitHub ↗
List all keys in the KV store
(self)
Source
from the content-addressed store, hash-verified
164
return
await self.request(Del(key))
165
166
async
def
list_keys(self) -> list[str]:
167
""
"List all keys in the KV store"
""
168
return
await self.request(ListKeys())
169
170
171
if
__name__ ==
"__main__"
:
Callers
nothing calls this directly
Calls
2
request
Method · 0.95
ListKeys
Class · 0.85
Tested by
no test coverage detected