Last active
November 3, 2016 21:49
-
-
Save blaylockbk/93d0946cc94d3d98d409c11cd99bf6c6 to your computer and use it in GitHub Desktop.
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