mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
06a2cb1909
PR: 129948 Submitted by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
16 lines
676 B
Plaintext
16 lines
676 B
Plaintext
simplejson is a simple, fast, extensible JSON encoder/decoder for Python
|
|
|
|
simplejson is compatible with Python 2.4 and later with no external
|
|
dependencies. It covers the full JSON specification for both encoding and
|
|
decoding, with unicode support. By default, encoding is done in an encoding
|
|
neutral fashion (plain ASCII with \uXXXX escapes for unicode characters).
|
|
|
|
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).
|
|
|
|
WWW: http://undefined.org/python/#simplejson
|