summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2011-02-06 14:13:21 +0800
committerBob Ippolito <bob@redivi.com>2011-02-06 14:13:21 +0800
commit131842a8af5a513d8020e70f8f7c571502c3f778 (patch)
treee5296a7f2cc647adab41dcc96f94ea07f556ef22 /README.rst
parent1eb3c0df7eb59d62e6236abb237d1d6581317ace (diff)
downloadsimplejson-131842a8af5a513d8020e70f8f7c571502c3f778.tar.gz
move long_description to README.rst
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..7dfcf77
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,15 @@
+simplejson is a simple, fast, complete, correct and extensible
+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.
+
+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.
+
+The encoder may be subclassed to provide serialization in any kind of
+situation, without any special support by the objects to be serialized
+(somewhat like pickle).
+
+The decoder can handle incoming JSON strings of any specified encoding
+(UTF-8 by default).