py-yajl provides Python bindings for the Yajl JSON encoder/decoder library
Go to file
R. Tyler Croy 1f3221e58e Merge pull request #36 from ericpeden/memory-leaks
memory leak fixes
2014-05-30 08:55:06 -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 When converting a tuple to a list, the count needs to be incremented on the borrowed reference 2010-04-06 20:57:37 -07:00
tests fix that new test. ./runtests.sh wasn't seeing the problem for some reason 2011-04-26 22:32:20 -07:00
yajl@d1e770838e Bump to the latest yajl 2010-08-17 22:09:17 -07:00
.gitignore Update ignore rules to exclude more 2010-03-22 15:10:06 -07:00
.gitmodules
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 missed the pybuffer decref in Decoder.decode 2011-04-26 22:32:20 -07:00
encoder.c Fix memory leaks in ProcessObject. 2014-05-29 20:14:25 -07:00
ptrstack.h Add license into ptrstack.h 2009-12-07 20:06:12 -08:00
py_yajl.h Fixed undefined symbol on python3.2 2011-07-08 15:30:51 -04:00
runtests.sh Add a simple test runner to run tests for myself locally against Python2/3 2010-04-10 14:45:24 -07:00
setup.py Add a __version__ attribute onto the module 2010-04-10 17:41:12 -07:00
yajl.c Fix a memory leak in yajl.dump(). 2014-05-29 20:14:02 -07:00
yajl_hacks.c Properly handle multiple unicode keys inside of a dictionary 2010-04-07 21:23:46 -07: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