Compare commits

..

1 Commits

Author SHA1 Message Date
Raphaël Vinot f3b15335d5 Add option to get a valid json dump.
Alternative approach to #1
2015-04-22 22:13:01 +02:00
1 changed files with 2 additions and 2 deletions

View File

@ -11,9 +11,9 @@ import json
class DatetimeEncoder(json.JSONEncoder):
def default(self, obj):
if isinstance(obj, datetime):
return obj.isoformat(' ')
return obj.strftime('%Y-%m-%d %H:%M:%S')
elif isinstance(obj, date):
return obj.isoformat()
return obj.strftime('%Y-%m-%d')
# Let the base class default method raise the TypeError
return json.JSONEncoder.default(self, obj)