Table of Contents

Python Json

refer: http://www.json.org/

Simple Example

Parse Json String (Json Decoder)

JSONPython
objectdict
arraylist
stringunicode
number (int)int, long
number (real)float
trueTrue
falseFalse
nullNone

Create Json String(Json Encoder)

PythonJSON
dictobject
list, tuplearray
str, unicodestring
int, long, floatnumber
Truetrue
Falsefalse
Nonenull

Json to csv