Return the value of the specified key or None if the key doesn’t exist.
None
redis.set("key", "value") assert redis.get("key") == "value"
The key to get.
The response is the value stored at the key or None if the key doesn’t exist.
Was this page helpful?