Skip to content

Instantly share code, notes, and snippets.

@nitely
Created November 21, 2018 23:25
Show Gist options
  • Save nitely/97c9123900e9bec66340b0b183cf0819 to your computer and use it in GitHub Desktop.
Save nitely/97c9123900e9bec66340b0b183cf0819 to your computer and use it in GitHub Desktop.
django serialize_datetime for javascript and json consumption
def serialize_datetime(dt):
return (
dt.astimezone(timezone.get_default_timezone())
.isoformat()
.replace('+00:00', 'Z'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment