Skip to content

Instantly share code, notes, and snippets.

@venkatesh22
Last active December 18, 2015 23:59
Show Gist options
  • Save venkatesh22/5864957 to your computer and use it in GitHub Desktop.
Save venkatesh22/5864957 to your computer and use it in GitHub Desktop.
python utc conversion
d = datetime(2009, 8, 31, 22, 30, 30)
toUTCc(d)
def toUTCc(d):
tz = timezone('US/Pacific')
return tz.normalize(tz.localize(d)).astimezone(pytz.utc)
print "Test: ", datetime.datetime.utcnow(), " = ", toUTC(datetime.datetime.now())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment