Skip to content

Commit 55ad82b

Browse files
committed
fix pip install / client name
1 parent 9c0c5d9 commit 55ad82b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

API.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ JSON.
1111
## Installation
1212

1313
```bash
14-
$ pip install rejson-py
14+
$ pip install rejson
1515
```
1616

1717
## Usage example
1818

1919
```python
20-
from rejson import ReJSONClient, Path
20+
from rejson import Client, Path
2121

2222
rj = Client(host='localhost', port=6379)
2323

rejson/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
## Installation
1010
1111
```bash
12-
$ pip install rejson-py
12+
$ pip install rejson
1313
```
1414
1515
## Usage example
1616
1717
```python
18-
from rejson import ReJSONClient, Path
18+
from rejson import Client, Path
1919
2020
rj = Client(host='localhost', port=6379)
2121
@@ -114,4 +114,4 @@ def decode(self, obj):
114114
"""
115115

116116
from .client import Client
117-
from .path import Path
117+
from .path import Path

0 commit comments

Comments
 (0)