Metadata-Version: 1.0
Name: omnijson
Version: 0.1.1
Summary: Wraps the best JSON installed, falling back on an internal simplejson.
Home-page: https://github.com/kennethreitz/omnijson
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: MIT
Description: OmniJSON
        ========
        
        The Problem
        -----------
        
        ::
        
            # Python 2.5.4 (r254:67916, Jun 24 2010, 21:47:25)
        
            >>> import anyjson
            Traceback (most recent call last):
              File "<stdin>", line 1, in <module>
              File "/Users/kreitz/.virtualenvs/25/lib/python2.5/site-packages/anyjson/__init__.py", line 127, in <module>
                raise ImportError("No supported JSON module found")
            ImportError: No supported JSON module found
        
        
        The Solution
        ------------
        
        ::
        
            # Python 2.5.4 (r254:67916, Jun 24 2010, 21:47:25)
        
            >>> import omnijson as json
            # \o/
        
        
        Features
        --------
        
        - Loads whichever is the fastest JSON module installed
        - Falls back on built in pure-python simplejson, just in case.
        - Proper API (``loads()``, ``dumps()``)
        - Verndorizable
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
