user11153
0
Q:

python class json serializable

import json

class Object:
    def toJSON(self):
        return json.dumps(self, default=lambda o: o.__dict__, 
            sort_keys=True, indent=4)
1

New to Communities?

Join the community