Skip to content

hexaclock/python-rapidjson

 
 

Repository files navigation

python-rapidjson

Python wrapper around RapidJSON

Authors:Ken Robbins <ken@kenrobbins.com>; Lele Gaifax <lele@metapensiero.it>
License:MIT License
Status:Build status Documentation status

RapidJSON is an extremely fast C++ JSON parser and serialization library: this module wraps it into a Python 3 extension, exposing its serialization/deserialization (to/from either bytes, str or file-like instances) and JSON Schema validation capabilities.

Latest version documentation is automatically rendered by Read the Docs.

Getting Started

First install python-rapidjson:

$ pip install python-rapidjson

or, if you prefer Conda:

$ conda install -c conda-forge python-rapidjson

Basic usage looks like this:

>>> import rapidjson
>