Skip to content

Commit 1705d9d

Browse files
author
Meir Shpilraien (Spielrein)
authored
Merge pull request #1 from andresrinivasan/master
Update README to be consistent with Gears docs
2 parents cdd6b8b + 2407963 commit 1705d9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
## Example: Using the Python Client:
55
```python
6-
from gearsclient import GearsRemoteBuilder as GRB
6+
from gearsclient import GearsRemoteBuilder as GearsBuilder
77
import redis
88

99
conn = redis.Redis(host='localhost', port=6379)
1010

1111
# count for each genre how many times it appears
1212

13-
res = GRB('KeysOnlyReader', r=conn).\
13+
res = GearsBuilder('KeysOnlyReader', r=conn).\
1414
map(lambda x:execute('hget', x, 'genres')).\
1515
filter(lambda x:x != '\\N').\
1616
flatmap(lambda x: x.split(',')).\
@@ -27,4 +27,4 @@ for r in res[0]:
2727
```
2828
pip install git+https://github.com/RedisGears/redisgears-py.git
2929
```
30-
Notice that the library also need to be installed in RedisGears virtual env.
30+
Notice that the library also need to be installed in RedisGears virtual env.

0 commit comments

Comments
 (0)