Initial import to Tizen
[profile/ivi/python-simplejson.git] / README.rst
1 simplejson is a simple, fast, complete, correct and extensible
2 JSON <http://json.org> encoder and decoder for Python 2.5+.  It is
3 pure Python code with no dependencies, but includes an optional C
4 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 may be subclassed to provide serialization in any kind of
14 situation, without any special support by the objects to be serialized
15 (somewhat like pickle).
16
17 The decoder can handle incoming JSON strings of any specified encoding
18 (UTF-8 by default).
19