JysonDocumentation

Version 2 (Alan Kennedy, 03/17/2009 06:22 pm)

1 2 Alan Kennedy
h1. Documentation for jyson, a pure-java JSON decoder for jython.
2 1
3 2 Alan Kennedy
To use jyson as a "JSON":http://json.org decoder, see the [[JysonDecoding|jyson decoder documentation]], which describes the following
4 1
5 2 Alan Kennedy
 # How to use jyson to parse JSON documents
6 2 Alan Kennedy
 # Options available for controlling the parsing process
7 2 Alan Kennedy
 # How you can deal with character and byte encoding issues.
8 2 Alan Kennedy
9 2 Alan Kennedy
To use jyson as a JSON encoder, see the [[JysonEncoding|jyson encoder documentation]], which describes the following
10 2 Alan Kennedy
11 2 Alan Kennedy
 # How to use jyson to obtain a representation of a jython oject graph as a JSON document.
12 2 Alan Kennedy
 # Options available for controlling the generation process
13 2 Alan Kennedy
 # How to ensure that all characters in the generated lie within the "ASCII character set":http://en.wikipedia.org/wiki/ASCII . 
14 2 Alan Kennedy
15 2 Alan Kennedy
Here is a page that describes the [[JysonDifferences|differences between jyson and the cpython json module]] .