Project

General

Profile

JysonDocumentation » History » Version 2

Alan Kennedy, 2009-03-17 06:22 PM

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