15 lines
427 B
Python
15 lines
427 B
Python
import json
|
|
|
|
|
|
class Encoder(json.JSONEncoder):
|
|
"""
|
|
This class is used to serialize objects to JSON.
|
|
The only difference between this and the default JSONEncoder is that this one
|
|
will call the __dict__ method of an object if it exists.
|
|
"""
|
|
|
|
def default(self, o):
|
|
if isinstance(o, object) and hasattr(o, '__dict__'):
|
|
return o.__dict__
|
|
|
|
return json.JSONEncoder.default(self, o)
|