Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 795 Bytes

README.rst

File metadata and controls

39 lines (26 loc) · 795 Bytes

yajl-py

yajl-py is a Pure Python wrapper (implemented using ctypes) to the excellent Yajl (Yet Another JSON Library) C library.

yajl and yajl-py, allow for fast stream parsing of JSON files, which enables the parsing of large files, that would not fit in memory.

Dependencies

To run the tests you also require:

  • make (to run make test)
  • nose (debian package == python-nose)

Install

From within the current directory run:

python setup.py install

    - OR Alternatively -

easy_install .

Usage

The examples directory contains full featured JSON Parsers built using yajl and yajl-py. See examples/README.rst for more info.