PKG-INFO 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. Metadata-Version: 1.1
  2. Name: simplejson
  3. Version: 3.6.4
  4. Summary: Simple, fast, extensible JSON encoder/decoder for Python
  5. Home-page: http://github.com/simplejson/simplejson
  6. Author: Bob Ippolito
  7. Author-email: bob@redivi.com
  8. License: MIT License
  9. Description: simplejson is a simple, fast, complete, correct and extensible
  10. JSON <http://json.org> encoder and decoder for Python 2.5+
  11. and Python 3.3+. It is pure Python code with no dependencies,
  12. but includes an optional C extension for a serious speed boost.
  13. The latest documentation for simplejson can be read online here:
  14. http://simplejson.readthedocs.org/
  15. simplejson is the externally maintained development version of the
  16. json library included with Python 2.6 and Python 3.0, but maintains
  17. backwards compatibility with Python 2.5.
  18. The encoder can be specialized to provide serialization in any kind of
  19. situation, without any special support by the objects to be serialized
  20. (somewhat like pickle). This is best done with the ``default`` kwarg
  21. to dumps.
  22. The decoder can handle incoming JSON strings of any specified encoding
  23. (UTF-8 by default). It can also be specialized to post-process JSON
  24. objects with the ``object_hook`` or ``object_pairs_hook`` kwargs. This
  25. is particularly useful for implementing protocols such as JSON-RPC
  26. that have a richer type system than JSON itself.
  27. For those of you that have legacy systems to maintain, there is a
  28. very old fork of simplejson in the `python2.2`_ branch that supports
  29. Python 2.2. This is based off of a very old version of simplejson,
  30. is not maintained, and should only be used as a last resort.
  31. .. _python2.2: https://github.com/simplejson/simplejson/tree/python2.2
  32. Platform: any
  33. Classifier: Development Status :: 5 - Production/Stable
  34. Classifier: Intended Audience :: Developers
  35. Classifier: License :: OSI Approved :: MIT License
  36. Classifier: License :: OSI Approved :: Academic Free License (AFL)
  37. Classifier: Programming Language :: Python
  38. Classifier: Programming Language :: Python :: 2
  39. Classifier: Programming Language :: Python :: 2.5
  40. Classifier: Programming Language :: Python :: 2.6
  41. Classifier: Programming Language :: Python :: 2.7
  42. Classifier: Programming Language :: Python :: 3
  43. Classifier: Programming Language :: Python :: 3.3
  44. Classifier: Programming Language :: Python :: 3.4
  45. Classifier: Programming Language :: Python :: Implementation :: CPython
  46. Classifier: Programming Language :: Python :: Implementation :: PyPy
  47. Classifier: Topic :: Software Development :: Libraries :: Python Modules