redis.zadd("myset", {"a": 1, "b": 2, "c": 3})

assert redis.zrange("myset", 0, 1) == ["a", "b"]

Arguments

key
str
required
The key to get.
min
float | str
required
The minimum value to include.
max
float | str
required
The maximum value to include.
“-inf” and “+inf” are also valid values for the ranges
withscores
bool
Whether to include the scores in the response.
rev
bool
Whether to reverse the order of the response.
sortby
"BYSCORE" | "BYLEX"
If bylex
offset
int
The offset to start from.
count
int
The number of elements to return.

Response

The values in the specified range.If withscores is true, the members will be tuples of the form (member, score).
redis.zadd("myset", {"a": 1, "b": 2, "c": 3})

assert redis.zrange("myset", 0, 1) == ["a", "b"]