Try it

{{ highlight `from murr.sync import Murr db = Murr.start_local(cache_dir="/tmp/murr") # fetch columns for a batch of document keys result = db.read("docs", keys=["doc_1", "doc_3", "doc_5"], columns=["score", "category"] ) print(result.to_pandas()) # zero copy! # score category # 0 0.95 ml # 1 0.72 infra # 2 0.68 ops` "python" "" }} Full quickstart with schema setup