METADATA 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. simplejson
  36. ----------
  37. simplejson is a simple, fast, complete, correct and extensible
  38. JSON <http://json.org> encoder and decoder for Python 3.3+
  39. with legacy support for Python 2.5+. It is pure Python code
  40. with no dependencies, but includes an optional C extension
  41. for a serious speed boost.
  42. The latest documentation for simplejson can be read online here:
  43. https://simplejson.readthedocs.io/
  44. simplejson is the externally maintained development version of the
  45. json library included with Python (since 2.6). This version is tested
  46. with the latest Python 3.8 and maintains backwards compatibility
  47. with Python 3.3+ and the legacy Python 2.5 - Python 2.7 releases.
  48. The encoder can be specialized to provide serialization in any kind of
  49. situation, without any special support by the objects to be serialized
  50. (somewhat like pickle). This is best done with the ``default`` kwarg
  51. to dumps.
  52. The decoder can handle incoming JSON strings of any specified encoding
  53. (UTF-8 by default). It can also be specialized to post-process JSON
  54. objects with the ``object_hook`` or ``object_pairs_hook`` kwargs. This
  55. is particularly useful for implementing protocols such as JSON-RPC
  56. that have a richer type system than JSON itself.
  57. For those of you that have legacy systems to maintain, there is a
  58. very old fork of simplejson in the `python2.2`_ branch that supports
  59. Python 2.2. This is based on a very old version of simplejson,
  60. is not maintained, and should only be used as a last resort.
  61. .. _python2.2: https://github.com/simplejson/simplejson/tree/python2.2