Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simplejson/simplejson
simplejson is a simple, fast, extensible JSON encoder/decoder for Python
https://github.com/simplejson/simplejson
json json-parser json-serializer python python2 python3
Last synced: 11 days ago
JSON representation
simplejson is a simple, fast, extensible JSON encoder/decoder for Python
- Host: GitHub
- URL: https://github.com/simplejson/simplejson
- Owner: simplejson
- License: other
- Created: 2011-02-06T05:47:45.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2024-08-14T14:27:51.000Z (3 months ago)
- Last Synced: 2024-10-17T07:13:05.293Z (22 days ago)
- Topics: json, json-parser, json-serializer, python, python2, python3
- Language: Python
- Homepage: https://simplejson.readthedocs.io/
- Size: 1.35 MB
- Stars: 1,647
- Watchers: 65
- Forks: 334
- Open Issues: 22
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
- License: LICENSE.txt
Awesome Lists containing this project
- best-of-python - GitHub - 10% open · ⏱️ 03.12.2023): (Data Serialization)
- awesome-json - simplejson - A simple, fast, extensible encoder/decoder (Libraries)
- awesome-github-star - simplejson
- awesome-list - simplejson - A simple, fast, extensible JSON encoder/decoder for Python. (Data Format & I/O / For Python)
README
simplejson
----------simplejson is a simple, fast, complete, correct and extensible
JSON encoder and decoder for Python 3.3+
with legacy support 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:
https://simplejson.readthedocs.io/simplejson is the externally maintained development version of the
json library included with Python (since 2.6). This version is tested
with the latest Python 3.8 and maintains backwards compatibility
with Python 3.3+ and the legacy Python 2.5 - Python 2.7 releases.The encoder can be specialized to provide serialization in any kind of
situation, without any special support by the objects to be serialized
(somewhat like pickle). This is best done with the ``default`` kwarg
to dumps.The decoder can handle incoming JSON strings of any specified encoding
(UTF-8 by default). It can also be specialized to post-process JSON
objects with the ``object_hook`` or ``object_pairs_hook`` kwargs. This
is particularly useful for implementing protocols such as JSON-RPC
that have a richer type system than JSON itself.For those of you that have legacy systems to maintain, there is a
very old fork of simplejson in the `python2.2`_ branch that supports
Python 2.2. This is based on a very old version of simplejson,
is not maintained, and should only be used as a last resort... _python2.2: https://github.com/simplejson/simplejson/tree/python2.2