Metadata-Version: 1.1
Name: pyrapidjson
Version: 0.0.1
Summary: Python Interface for rapidjson(JSON parser and generator).
Home-page: https://github.com/hhatto/pyrapidjson
Author: Hideo Hattori
Author-email: hhatto.jp@gmail.com
License: Expat License
Description: pyrapidjson
        ===========
        .. image:: https://secure.travis-ci.org/hhatto/pyrapidjson.png?branch=master
           :target: https://secure.travis-ci.org/hhatto/pyrapidjson
           :alt: Build status
        
        
        About
        -----
        pyrapidjson is a wrapper for `rapidjson`_ (JSON parser/generator).
        
        .. _`rapidjson`: http://code.google.com/p/rapidjson/
        
        
        Installation
        ------------
        from pip::
        
            $ pip install pyrapidjson
        
        from easy_install::
        
            easy_install -ZU pyrapidjson
        
        
        Requirements
        ------------
        Python2.7+
        
        
        Usage
        -----
        
        basic usage::
        
            >>> import rapidjson
            >>> rapidjson.loads('[1, 2, {"test": "hoge"}]')
            >>> [1, 2, {"test": "hoge"}]
        
        
        Links
        -----
        * PyPI_
        * GitHub_
        * `Travis-CI`_
        
        .. _PyPI: http://pypi.python.org/pypi/pyrapidjson/
        .. _GitHub: https://github.com/hhatto/pyrapidjson
        .. _`Travis-CI`: https://secure.travis-ci.org/hhatto/pyrapidjson
        
        
Keywords: json jsmn
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
