When I tried ``` >>> import redis >>> r = redis.StrictRedis(host='localhost', port=6379, db=0) ``` as instructed in the readme file, I get this error: ```Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'StrictRedis'. ``` ```