Skip to content

Instantly share code, notes, and snippets.

@edgabaldi
Created December 11, 2015 01:34
Show Gist options
  • Save edgabaldi/aa91d27e104d5acb10c7 to your computer and use it in GitHub Desktop.
Save edgabaldi/aa91d27e104d5acb10c7 to your computer and use it in GitHub Desktop.
JSON Serialize Example
>>> import json
>>> import datetime
>>> from django.core.serializers.json import DjangoJSONEncoder
>>> di = {'now': datetime.datetime.now()}
>>> json.dumps(di, cls=DjangoJSONEncoder)
'{"now": "2015-12-10T23:32:42.344"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment