# jsonstream **Repository Path**: mirrors_technige/jsonstream ## Basic Information - **Project Name**: jsonstream - **Description**: JSON parser library - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 =============== ...