You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/lib/sift_client/resources/sync_stubs/__init__.pyi
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -431,7 +431,8 @@ class ChannelsAPI:
431
431
run: Run|str|None=None,
432
432
start_time: datetime|None=None,
433
433
end_time: datetime|None=None,
434
-
limit: int|None=None,
434
+
max_results: int|None=None,
435
+
page_size: int|None=None,
435
436
) ->dict[str, pd.DataFrame]:
436
437
"""Get data for one or more channels.
437
438
@@ -440,7 +441,8 @@ class ChannelsAPI:
440
441
run: The Run or run_id to get data for.
441
442
start_time: The start time to get data for.
442
443
end_time: The end time to get data for.
443
-
limit: The maximum number of data points to return. Will be in increments of page_size or default page size defined by the call if no page_size is provided.
444
+
max_results: The maximum number of data points to return.
445
+
page_size: The number of data points to return per page.
444
446
445
447
Returns:
446
448
A dictionary mapping channel names to pandas DataFrames containing the channel data.
@@ -454,9 +456,10 @@ class ChannelsAPI:
454
456
run: Run|str|None=None,
455
457
start_time: datetime|None=None,
456
458
end_time: datetime|None=None,
457
-
limit: int|None=None,
459
+
max_results: int|None=None,
460
+
page_size: int|None=None,
458
461
) ->dict[str, pa.Table]:
459
-
"""Get data for one or more channels as pyarrow tables."""
462
+
"""Same as get_data but returns data as pyarrow tables."""
0 commit comments