All Projects → hhatto → pyrapidjson

hhatto / pyrapidjson

Licence: MIT license
Python binding for rapidjson

Programming Languages

C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language
Makefile
30231 projects

pyrapidjson

Build status

About

pyrapidjson is a wrapper for rapidjson (JSON parser/generator).

Installation

from pip:

$ pip install pyrapidjson

from easy_install:

easy_install -ZU pyrapidjson

Requirements

Python2.7+

Usage

basic usage:

>>> import rapidjson
>>> rapidjson.loads('[1, 2, {"test": "hoge"}]')
>>> [1, 2, {"test": "hoge"}]
>>> rapidjson.dumps([1, 2, {"foo": "bar"}])
'[1,2,{"foo":"bar"}]'
>>>

Links

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].