METADATA 2.7 KB

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