Login

JSON decode datetime

Author:
japerk
Posted:
April 13, 2009
Language:
Python
Version:
1.0
Score:
0 (after 0 ratings)

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

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 1 week ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 9 months, 4 weeks ago
  5. Help text hyperlinks by sa2812 10 months, 3 weeks ago

Comments

schinckel (on August 5, 2010):

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.