rename files
[wikipedia-api-cdsw] / README.rst.simplejson
1 simplejson is a simple, fast, complete, correct and extensible
2 JSON <http://json.org> encoder and decoder for Python 2.5+
3 and Python 3.3+.  It is pure Python code with no dependencies,
4 but includes an optional C extension for a serious speed boost.
5
6 The latest documentation for simplejson can be read online here:
7 http://simplejson.readthedocs.org/
8
9 simplejson is the externally maintained development version of the
10 json library included with Python 2.6 and Python 3.0, but maintains
11 backwards compatibility with Python 2.5.
12
13 The encoder can be specialized to provide serialization in any kind of
14 situation, without any special support by the objects to be serialized
15 (somewhat like pickle). This is best done with the ``default`` kwarg
16 to dumps.
17
18 The decoder can handle incoming JSON strings of any specified encoding
19 (UTF-8 by default). It can also be specialized to post-process JSON
20 objects with the ``object_hook`` or ``object_pairs_hook`` kwargs. This
21 is particularly useful for implementing protocols such as JSON-RPC
22 that have a richer type system than JSON itself.
23

Benjamin Mako Hill || Want to submit a patch?