MCPcopy
hub / github.com/redis/redis-py / range

Method range

redis/commands/timeseries/commands.py:769–784  ·  view source on GitHub ↗
(
        self: SyncClientProtocol,
        key: KeyT,
        from_time: int | str,
        to_time: int | str,
        count: int | None = None,
        aggregation_type: str | list[str] | None = None,
        bucket_size_msec: int | None = 0,
        filter_by_ts: List[int] | None = None,
        filter_by_min_value: int | None = None,
        filter_by_max_value: int | None = None,
        align: int | str | None = None,
        latest: bool | None = False,
        bucket_timestamp: str | None = None,
        empty: bool | None = False,
    )

Source from the content-addressed store, hash-verified

767
768 @overload
769 def range(
770 self: SyncClientProtocol,
771 key: KeyT,
772 from_time: int | str,
773 to_time: int | str,
774 count: int | None = None,
775 aggregation_type: str | list[str] | None = None,
776 bucket_size_msec: int | None = 0,
777 filter_by_ts: List[int] | None = None,
778 filter_by_min_value: int | None = None,
779 filter_by_max_value: int | None = None,
780 align: int | str | None = None,
781 latest: bool | None = False,
782 bucket_timestamp: str | None = None,
783 empty: bool | None = False,
784 ) -> TimeSeriesRangeResponse: ...
785
786 @overload
787 def range(

Callers 15

dt_time_series.pyFile · 0.80
test_del_rangeFunction · 0.80
test_rangeFunction · 0.80
test_range_advancedFunction · 0.80
test_range_latestFunction · 0.80
test_range_emptyFunction · 0.80
test_rev_rangeFunction · 0.80

Calls 2

__range_paramsMethod · 0.95
execute_commandMethod · 0.45

Tested by 15

test_del_rangeFunction · 0.64
test_rangeFunction · 0.64
test_range_advancedFunction · 0.64
test_range_latestFunction · 0.64
test_range_emptyFunction · 0.64
test_rev_rangeFunction · 0.64