Skip to content
amak edited this page Aug 19, 2024 · 1 revision

Documentation for jyson, a pure-java JSON decoder for jython.

To use jyson as a JSON decoder, see the jyson decoder documentation, which describes

  • How to use jyson to parse JSON documents and generate a jython object hierarchy from them
  • Options available for controlling the parsing process
  • How you can deal with character and byte encoding issues.
  • etc.

To use jyson as a JSON encoder, see the jyson encoder documentation, which describes

  • How to use jyson to obtain a representation of a jython object hierarchy as a JSON document.
  • Options available for controlling the generation process
  • How to ensure that all characters in the generated text lie within the ASCII character set.
  • How jyson can generate JSON from user objects
  • etc.

This page that describes the differences between jyson and the cpython json module.