Metadata-Version: 1.1
Name: nssjson
Version: 0.1
Summary: Not So Simple JSON encoder/decoder
Home-page: https://github.com/lelit/nssjson
Author: Lele Gaifax
Author-email: lele@metapensiero.it
License: MIT License
Description: =========
         nssjson
        =========
        
        JSON encoder/decoder for Python
        ===============================
        
        nssjson is a (not so) simple, fast, complete, correct and extensible JSON <http://json.org>
        encoder and decoder for Python 2.5+ and Python 3.3+.  It is pure Python code with no
        dependencies, but includes an optional C extension for a serious speed boost.
        
        nssjson__ is a fork of simplejson__ that fulfills my need of having a good performance JSON
        encoder/decoder able to handle also Python's datetime, even if with an admittedly non-standard
        and faulty heuristic that was not considered within the scope of the original product.
        
        Practically, the difference is that, out of the box, you have::
        
            >>> import datetime
            >>> import nssjson
            >>> now = datetime.datetime.now()
            >>> nssjson.loads(nssjson.dumps(now, iso_datetime=True), iso_datetime=True) == now
            True
        
        __ https://github.com/lelit/nssjson
        __ https://github.com/simplejson/simplejson
        
        
        Changes
        -------
        
        0.1 (2014-03-19)
        ~~~~~~~~~~~~~~~~
        
        * Fork of simplejson 3.3.3
        
        * Add support for Python datetimes, dates and times
          (see https://github.com/simplejson/simplejson/issues/86 and
          https://github.com/simplejson/simplejson/pull/89)
        
        * Fix compatibility with Python 3.4 unittests
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Academic Free License (AFL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
