py-yajl provides Python bindings for the Yajl JSON encoder/decoder library
Go to file
R. Tyler Ballance 1738cb5fe9 Bump version to 0.3.3
Change-Id: I7cd8316e65390e0f34e208114b96e3426f252093
2010-03-21 23:54:37 -07:00
includes Allow for building in yajl with the module instead of linking a 'system' one 2009-07-11 18:14:33 -07:00
test_data Refactor tests into their own directory 2010-01-10 00:59:27 -08:00
tests Raise a TypeError when encountering objects that cannot be serialized 2010-03-21 23:42:33 -07:00
yajl@870ab84392 Bump submodule to latest yajl HEAD 2010-02-20 23:03:26 -08:00
.gitignore .gitignore 2009-11-12 12:55:24 -08:00
.gitmodules Add yajl as a submodule 2009-07-11 17:45:56 -07:00
BUILDING.markdown Update doc formatting 2009-12-06 00:07:21 -08:00
MANIFEST.in Prune yajl/.git and yajl/build directories from the source distribution 2010-02-21 00:52:45 -08:00
README.markdown Mention that we support Python3 in the README 2010-01-09 01:20:03 -08:00
compare.py Allow yajl to be compiled out of the box for Python 2.x and 3.x 2009-12-05 23:59:54 -08:00
decoder.c Clean-up some irritating extra whitespace 2010-02-20 21:55:06 -08:00
encoder.c Raise a TypeError when encountering objects that cannot be serialized 2010-03-21 23:42:33 -07:00
ptrstack.h Add license into ptrstack.h 2009-12-07 20:06:12 -08:00
py_yajl.h Define some macros for building cleanly on Python 2.4 and Python 2.5 2010-02-20 21:36:45 -08:00
setup.py Bump version to 0.3.3 2010-03-21 23:54:37 -07:00
yajl.c Clean-up some irritating extra whitespace 2010-02-20 21:55:06 -08:00

README.markdown

py-yajl: Python bindings for Yet Another JSON Library

Introduction

py-yajl is a C-based Python module to interface with Yajl (Yet Another JSON Library). While modules like jsonlib, simplejson and `cjson already exist, py-yajl is intended on providing pythonic access to Yajl's extremely fast string and stream parsing facilities.

py-yajl fully supports Python 2.4-2.6 and Python 3.

Building py-yajl

Please refer to BUILDING.markdon

Authors