PKG-INFO 3.0 KB

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