Metadata-Version: 1.1
Name: jsonstream
Version: 1.0.0
Summary: UNKNOWN
Home-page: http://nigelsmall.com/jsonstream
Author: Nigel Small
Author-email: nigel@nigelsmall.com
License: Apache License, Version 2.0
Description: .. 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
        ===============
        
        ...
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development
