Created
January 15, 2014 20:24
-
-
Save williballenthin/8443854 to your computer and use it in GitHub Desktop.
Decodes the DateCreated and DateLastCreated timestamp structures. See structure description here: http://cfed-ttf.blogspot.com/2009/08/decoding-datecreated-and.html
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
import sys | |
from datetime import datetime | |
import struct | |
buf = sys.stdin.read().rstrip("\r\n") | |
y, mo, w, d, h, mi, s, _ = struct.unpack("<HHHHHHHH", buf) | |
print datetime(y, mo, d, h, mi, s).isoformat("T") + "Z" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: