JSON 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. JSON encode ISO UTC datetime by japerk 4 years, 2 months ago
  2. isoutc template filter by japerk 4 years, 2 months ago
  3. timeto template filter by japerk 4 years, 2 months ago
  4. Proper fixtures loading in south data migrations by JustDelight 3 months, 3 weeks ago
  5. FuzzyDateTimeField by japerk 4 years, 2 months 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.

#

(Forgotten your password?)