From b3003d329d493f4877badddd08d24ba0f3d1c46c Mon Sep 17 00:00:00 2001 From: Jeremy Leibs Date: Wed, 18 Dec 2024 15:11:33 -0500 Subject: [PATCH] Fix the signatures --- rerun_py/rerun_bindings/rerun_bindings.pyi | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/rerun_py/rerun_bindings/rerun_bindings.pyi b/rerun_py/rerun_bindings/rerun_bindings.pyi index bd046bf15069..2420615ec2d9 100644 --- a/rerun_py/rerun_bindings/rerun_bindings.pyi +++ b/rerun_py/rerun_bindings/rerun_bindings.pyi @@ -615,7 +615,27 @@ class StorageNodeClient: """ Open a [`Recording`][rerun.dataframe.Recording] by id to use with the dataframe APIs. - This currently downloads the full recording to the local machine. + This will run queries against the remote storage node and stream the results. Faster for small + numbers of queries with small results. + + Parameters + ---------- + id : str + The id of the recording to open. + + Returns + ------- + Recording + The opened recording. + + """ + ... + + def download_recording(self, id: str) -> Recording: + """ + Download a [`Recording`][rerun.dataframe.Recording] by id to use with the dataframe APIs. + + This will download the full recording to memory and run queries against a local chunk store. Parameters ----------