# Get all members of a set.

cursor = 0
results = set()

while True:
    cursor, keys = redis.sscan("myset", cursor, match="*")

    results.extend(keys)
    if cursor == 0:
        break

Arguments

key
str
required

The key of the set.

cursor
number

The cursor, use 0 in the beginning and then use the returned cursor for subsequent calls.

options
Object
match
str

Glob-style pattern to filter by members.

count
number

Number of members to return per call.

Response

The new cursor and the members. If the new cursor is 0 the iteration is complete.

# Get all members of a set.

cursor = 0
results = set()

while True:
    cursor, keys = redis.sscan("myset", cursor, match="*")

    results.extend(keys)
    if cursor == 0:
        break