2013年1月14日 星期一

快速取得unix time對應的Mac系統時區時間

關於時間的問題,找Python大神就對了。經由Mac內建的python,我們可以很方便地查詢unix time對應的Mac系統時區時間:

1. 啟動terminal

2. $ python
python
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>


3. >>>  from datetime import datetime

4. >>>  datetime.fromtimestamp(1358171586.312390)
datetime.datetime(2013, 1, 14, 21, 53, 6, 312390)

輸入unix time 1358171586.312390,
回報對應到目前Mac系統時區的時間2013年1月14日晚上9點53分6秒


沒有留言:

張貼留言