Skip to content

technige/jsonstream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

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

...

About

JSON parser library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published