https://github.com/technige/jsonstream
JSON parser library
https://github.com/technige/jsonstream
Last synced: 10 months ago
JSON representation
JSON parser library
- Host: GitHub
- URL: https://github.com/technige/jsonstream
- Owner: technige
- License: apache-2.0
- Created: 2014-02-02T17:09:58.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-13T16:39:27.000Z (almost 12 years ago)
- Last Synced: 2025-04-08T16:02:06.056Z (about 1 year ago)
- Language: C
- Size: 418 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://travis-ci.org/nigelsmall/jsonstream.png?branch=master
:target: https://travis-ci.org/nigelsmall/jsonstream
==========
JSONStream
==========
*JSONStream* is a JSON parser specifically designed to incrementally parse
large JSON documents in a single pass without loading the entire document into
memory.
Installation
============
JSONStream is hosted on PyPI and so to install, simply use ``pip``::
pip install jsonstream
Quick Start
===========
::
>>> from jsonstream import JSONStream
>>> list(JSONStream(['["hello", "world"]']))
[((), []), ((0,), 'hello'), ((1,), 'world')]
Further Reading
===============
...