If you have JSON objects with datetime
attributes that you want to decode to python datetime objects, you can use decode_datetime
as a simplejson object hook. simplejson.loads(s, object_hook=decode_datetime)
.
1 2 3 4 5 6 7 8 9 | import dateutil.parser
def decode_datetime(obj):
if 'datetime' not in obj:
return obj
dt = dateutil.parser.parse(obj['datetime'])
obj['datetime'] = dt
return obj
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
If you have datetime objects as "%Y-%m-%d %H:%M:%S", then you don't need to convert them. Django will allow for using these in queries, and saving to the database.
Same with date ("%Y-%m-%d") and time ("%H:%M:%S") objects.
#
Please login first before commenting.