我想从 Python 获取 UTC 文件的修改日期。以下代码返回我的 Linux 配置时区 (GMT-5) 中的日期。我想要它在UTC。或者我如何获得 os 配置的时区以将其转换为 pytz ?
$ python
Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import datetime
>>> import os
>>> dt=os.path.getmtime('/home/user/.bashrc')
>>> datetime.datetime.fromtimestamp(dt)
datetime(2012, 5, 30, 21, 18, 10)
谢谢