Search code examples
pythonredisredis-py

redis-py AttributeError: 'PubSub' object has no attribute 'get_message'


I write the code in Windows Command Line. The code is just from Redis-py's GitHub page. enter image description here

I don't know how this happens,so I.

dir(p)

The result is: enter image description here

I cannot find "get_message". My redis is version -2.9.1.


Solution

  • get_message is not part of 2.9.1 release. It will be part of future 2.10.0 release

    For 2.9.1 you should use .listen() method.