Skip to content

ionelmc/pyrapidjson

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"}]'
>>>

About

Python binding for rapidjson

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 91.5%
  • C 6.6%
  • Python 1.8%
  • Makefile 0.1%