redis.rpush("mylist", "one", "two", "three")

assert redis.lpop("mylist") == "one"

Arguments

key
str
required
The key of the list.
count
int
How many elements to pop. If not specified, a single element is popped.

Response

The popped element(s). If count was specified, an array of elements is returned, otherwise a single element is returned. If the list is empty, None is returned.
redis.rpush("mylist", "one", "two", "three")

assert redis.lpop("mylist") == "one"