METADATA 3.0 KB

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