JSON encoder and decoder in Python

json.JSONDecoder

JSON Python
object dict
array list
string str
number (int) int
number (real) float
true True
false False
null None

json.JSONEncoder

Python JSON
dict object
list, tuple array
str string
int, float, int- & float-derived Enums number
True true
False false
None null
Source :