Added installation instructions to the README.
[invirt/packages/python-jsonrpclib.git] / README
1 JSONRPClib
2 ==========
3 This library is an implementation of the JSON-RPC specification.
4 It supports both the original 1.0 specification, as well as the 
5 new (proposed) 2.0 spec, which includes batch submission, keyword
6 arguments, etc.
7
8 It is licensed under the Apache License, Version 2.0
9 (http://www.apache.org/licenses/LICENSE-2.0.html).
10
11 Installation
12 ============
13 To install:
14
15     python setup.py build
16     sudo python setup.py install
17
18 To use this module, you'll need a JSON library. The library
19 looks first for cjson, then for the built-in JSON library (with
20 default Python 2.6+ distributions), and finally the simplejson
21 library.
22
23