views:

212

answers:

3

Can anyone please help me in serializing resultset returned using mysqldb in python?

I get typeerror: datetime.date(2007, 11, 15) is not JSON serializable

What is the best way to do serialize into Json object in python?

I am using json.dumps(resultset) to serialize resultset...

+1  A: 

You can use rfc3339 strings instead:

  json.dump(datetime.now().strftime('%Y-%m-%dT%H:%M:%S'))

See: http://stackoverflow.com/questions/455580/json-datetime-between-python-and-javascript

The MYYN
I have corrected my question, I am passing resultset to json.dumps and not datetime...
Software Enthusiastic
A: 

Set the "default" function passed to json.dump:

>>> d=datetime.datetime.now()
>>> json.dumps(d,default=str)
'"2009-12-18 14:22:21.405095"'
Vince Busam