Skip to content

Commit ba39f0c

Browse files
committed
Update README
1 parent 4e73efc commit ba39f0c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ MessagePack RPC implementation based on Tornado.
99
## Installation
1010

1111
```sh
12-
% python setup.py install
12+
% pip install msgpack-rpc-python
1313
```
1414

1515
or
1616

1717
```sh
18-
% easy_install msgpack-rpc-python
18+
% python setup.py install
1919
```
2020

21-
### Dependent modules
21+
### Module dependency
2222

2323
* msgpack-python (>= 0.3)
2424
* tornado (>= 3)
@@ -53,13 +53,13 @@ result = client.call('sum', 1, 2) # = > 3
5353
In test directory:
5454

5555
```sh
56-
% PYTHONPATH=../ python test_msgpackrpc.py
56+
% PYTHONPATH=../ python test/test_msgpackrpc.py
5757
```
5858

5959
Run with timeout test(Timeout test takes about 5 seconds)
6060

6161
```sh
62-
% PYTHONPATH=../ python test_msgpackrpc.py --timeout-test
62+
% PYTHONPATH=../ python test/test_msgpackrpc.py --timeout-test
6363
```
6464

6565
## Performance

0 commit comments

Comments
 (0)