py-yajl provides Python bindings for the Yajl JSON encoder/decoder library
Go to file
R. Tyler Ballance c619aeab0e Properly escape inbound slashes and double-quotes
Change-Id: I38c4d06f9c2c6cae361b9921ad1c51aeb5baacc8
2010-04-06 21:24:13 -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 Enable new unicode tests to run on Python 2 and 3 properly 2010-04-06 21:19:01 -07:00
yajl@402d4a3c62 Bump yajl to the latest version 2010-04-06 20:47:44 -07:00
.gitignore Update ignore rules to exclude more 2010-03-22 15:10:06 -07: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 Properly escape inbound slashes and double-quotes 2010-04-06 21:24:13 -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 Increment the py-yajl version to v0.3.4 2010-04-06 21:00:32 -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