Reputation: 1
I need to convert a windows hex 64 bit (big endian) date time to something readable in python?
example 'abaaaaaaccd3e340'
converts to "Tue, 29 June 2010 09:47:42 UTC"
Any help would be appreciated.
Upvotes: 0
Views: 2008
Reputation: 177901
Looks word-for-word like this question, but your example number is different, although the date/time is exactly the same.
Upvotes: 0
Reputation: 11
http://code.activestate.com/recipes/303344-converting-windows-64-bit-time-to-python-useable-f/
This might help...
Upvotes: 1