Last active
November 3, 2016 21:49
Takes a list of Epoch times and converts it to a list of python datetime objects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# where dates is a list or numpy array of epoch dates... | |
DATE = [datetime.utcfromtimestamp(x) for x in dates] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment