Project

General

Profile

JysonDocumentation » History » Version 4

Alan Kennedy, 2009-03-17 08:59 PM

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