Serialize and Deserialize complex JSON in Python

Yuchen Z.
3 min readJan 13, 2019

This post is focused on different ways to interact with JSON with Python using json:

https://docs.python.org/3/library/json.html.

We’ll look at their limitations, run time errors, and etc., with sample code. We start from a basic type Dictionary and eventually discussed a solution for working with complex Python objects.

Dictionary

Python and the json module is working extremely well with dictionaries. The following is for serializing and deserializing a Python…

--

--