*** TypeError: datetime.datetime(2020, 11, 27, 12, 50, 26, 716205) is not JSON serializable code example
Example: json dumps datetime
def myconverter(o):
if isinstance(o, datetime.datetime):
return o.__str__()
print(json.dumps(d, default = myconverter))