Metadata-Version: 1.1
Name: yajs
Version: 1.0.2
Summary: A small wrapper around YAJL's lexer
Home-page: https://github.com/fireteam/yajs
Author: Fireteam Ltd.
Author-email: info@fireteam.net
License: BSD
Description: yajs
        
           yajs is a simple package that provides a wrapper to the YAJL JSON
           lexer functions that allow tokenization of streams of JSON data
           without having to buffer up the whole data.
        
        Examples:
        
            >>> from cStringIO import StringIO
            >>> from yajs import tokenize
            >>> for token in tokenize(StringIO('[1, 2, 3]')):
            ...     print token
            ... 
            ('start_array', None)
            ('value', 1)
            ('value', 2)
            ('value', 3)
            ('end_array', None)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
