Solve object of type datetime is not JSON serializable in python
When we attempt to serialize a Python datetime object to JSON. We get TypeError: Object of type datetime is not JSON serializable problem. This is because the JSON module does not support the object from the datetime module. To solve this problem we need to convert datetime object to a string format using JSON module […]
Solve object of type datetime is not JSON serializable in python Read More »