diff options
author | Bob Ippolito <bob@redivi.com> | 2011-02-06 15:16:41 +0800 |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2011-02-06 15:16:41 +0800 |
commit | 0d087a49106e94358eebf7fd028b5a55d8f6afb9 (patch) | |
tree | 23762303b922e6c76922e2f796d493053d0b77fc | |
parent | 87a8e18b9e454d91ff39c33bcf7fd79f0ec8b671 (diff) | |
download | simplejson-0d087a49106e94358eebf7fd028b5a55d8f6afb9.tar.gz |
links
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | index.rst | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -3,6 +3,9 @@ JSON <http://json.org> encoder and decoder for Python 2.5+. It is pure Python code with no dependencies, but includes an optional C extension for a serious speed boost. +The latest documentation for simplejson can be read online here: +http://simplejson.github.com/simplejson/ + simplejson is the externally maintained development version of the json library included with Python 2.6 and Python 3.0, but maintains backwards compatibility with Python 2.5. @@ -13,3 +16,4 @@ situation, without any special support by the objects to be serialized The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by default). + @@ -16,6 +16,9 @@ compatibility with Python 2.5 and (currently) has significant performance advantages, even without using the optional C extension for speedups. +Development of simplejson happens on Github: +http://github.com/simplejson/simplejson + Encoding basic Python object hierarchies:: >>> import simplejson as json |