I want to encode objects in JSON. But, I can not figure out how to make the output without the string escaping.
import json class Abc: def __init__(self
This is what you're looking for: https://github.com/jsonpickle/jsonpickle
It does nested serialization of Python objects and can easily be extended to serialize custom types.