pyrapidjson is a wrapper for rapidjson (JSON parser/generator).
from pip:
$ pip install pyrapidjson
from easy_install:
easy_install -ZU pyrapidjson
Python2.7
basic usage:
>>> import rapidjson >>> rapidjson.loads('[1, 2, {"test": "hoge"}]') >>> [1, 2, {"test": "hoge"}] >>> rapidjson.dumps([1, 2, {"foo": "bar"}]) '[1,2,{"foo":"bar"}]' >>>