Skip to content

Instantly share code, notes, and snippets.

@sillygwailo
Created December 15, 2011 00:43
Show Gist options
  • Save sillygwailo/1479309 to your computer and use it in GitHub Desktop.
Save sillygwailo/1479309 to your computer and use it in GitHub Desktop.
Convert Unix timestamp into human-readable date
#!/usr/bin/env python
import sys
from datetime import datetime
if __name__ == '__main__':
print datetime.fromtimestamp(float(sys.argv[1]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment