Python Fix Object of type ‘date’ is not JSON serializable My quick & dirty JSON dump that eats dates and everything: json.dumps(my_dictionary, indent=4, sort_keys=True, default=str) default is a function applied to objects that aren’t serializable.\ In this case it’s str, so it […]