Snippets tagged “custom-encoder”
1 snippet uses this tag.
- How to overcome "datetime.datetime not JSON serializable"?Python
One way to overcome "datetime.datetime not JSON serializable" in Python is to use the json.dumps() method with the default argument, default=str, which converts the datetime object to a string before serializing.