METADATA 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. Metadata-Version: 2.1
  2. Name: simplejson
  3. Version: 3.19.3
  4. Summary: Simple, fast, extensible JSON encoder/decoder for Python
  5. Home-page: https://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 :: 3.7
  25. Classifier: Programming Language :: Python :: 3.8
  26. Classifier: Programming Language :: Python :: 3.9
  27. Classifier: Programming Language :: Python :: 3.10
  28. Classifier: Programming Language :: Python :: 3.11
  29. Classifier: Programming Language :: Python :: 3.12
  30. Classifier: Programming Language :: Python :: 3.13
  31. Classifier: Programming Language :: Python :: Implementation :: CPython
  32. Classifier: Programming Language :: Python :: Implementation :: PyPy
  33. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  34. Requires-Python: >=2.5, !=3.0.*, !=3.1.*, !=3.2.*
  35. License-File: LICENSE.txt
  36. simplejson
  37. ----------
  38. simplejson is a simple, fast, complete, correct and extensible
  39. JSON <http://json.org> encoder and decoder for Python 3.3+
  40. with legacy support for Python 2.5+. It is pure Python code
  41. with no dependencies, but includes an optional C extension
  42. for a serious speed boost.
  43. The latest documentation for simplejson can be read online here:
  44. https://simplejson.readthedocs.io/
  45. simplejson is the externally maintained development version of the
  46. json library included with Python (since 2.6). This version is tested
  47. with the latest Python 3.8 and maintains backwards compatibility
  48. with Python 3.3+ and the legacy Python 2.5 - Python 2.7 releases.
  49. The encoder can be specialized to provide serialization in any kind of
  50. situation, without any special support by the objects to be serialized
  51. (somewhat like pickle). This is best done with the ``default`` kwarg
  52. to dumps.
  53. The decoder can handle incoming JSON strings of any specified encoding
  54. (UTF-8 by default). It can also be specialized to post-process JSON
  55. objects with the ``object_hook`` or ``object_pairs_hook`` kwargs. This
  56. is particularly useful for implementing protocols such as JSON-RPC
  57. that have a richer type system than JSON itself.
  58. For those of you that have legacy systems to maintain, there is a
  59. very old fork of simplejson in the `python2.2`_ branch that supports
  60. Python 2.2. This is based on a very old version of simplejson,
  61. is not maintained, and should only be used as a last resort.
  62. .. _python2.2: https://github.com/simplejson/simplejson/tree/python2.2