METADATA 3.0 KB

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