我有一个档案。在Python中,我希望将其创建时间转换为ISO时间(ISO 8601)字符串,同时保留它是在东部时区(ET)创建的事实。
如何获取文件的ctime并将其转换为指示东部时区的ISO时间字符串(并在必要时考虑日光节约时间)?
我有一个档案。在Python中,我希望将其创建时间转换为ISO时间(ISO 8601)字符串,同时保留它是在东部时区(ET)创建的事实。
如何获取文件的ctime并将其转换为指示东部时区的ISO时间字符串(并在必要时考虑日光节约时间)?
当前回答
我开发了这个函数:
def iso_8601_format(dt):
"""YYYY-MM-DDThh:mm:ssTZD (1997-07-16T19:20:30-03:00)"""
if dt is None:
return ""
fmt_datetime = dt.strftime('%Y-%m-%dT%H:%M:%S')
tz = dt.utcoffset()
if tz is None:
fmt_timezone = "+00:00"
else:
fmt_timezone = str.format('{0:+06.2f}', float(tz.total_seconds() / 3600))
return fmt_datetime + fmt_timezone
其他回答
对于那些正在寻找仅限约会的解决方案的人来说,它是:
import datetime
datetime.date.today().isoformat()
ISO 8601允许一个紧凑的表示,除了T之外没有分隔符,所以我喜欢使用这一行程序来获得一个快速的时间戳字符串:
>>> datetime.datetime.utcnow().strftime("%Y%m%dT%H%M%S.%fZ")
'20180905T140903.591680Z'
如果你不需要微秒,可以省略。%f部分:
>>> datetime.datetime.utcnow().strftime("%Y%m%dT%H%M%SZ")
'20180905T140903Z'
当地时间:
>>> datetime.datetime.now().strftime("%Y%m%dT%H%M%S")
'20180905T140903'
一般来说,我建议你不要使用标点符号。RFC 3339推荐这种风格,因为如果每个人都使用标点符号,就不会有像多个ISO 8601字符串在标点符号上被分组排序这样的风险。因此,一个符合规则的字符串的内衬将是:
>>> datetime.datetime.now().strftime("%Y-%m-%dT%H:%M:%SZ")
'2018-09-05T14:09:03Z'
请让生活变得简单:
使用UTC时间 微秒 一行代码
f utcnow () {datetime。datetime。isoformat (): 3]) Z”
输出:
2022 - 02 - 25 - t02:08:40.684z
ISO 8601时间格式不存储时区名称,只保留相应的UTC偏移量。
在Python 3中,将文件ctime转换为ISO 8601时间字符串,同时保留UTC偏移量:
>>> import os
>>> from datetime import datetime, timezone
>>> ts = os.path.getctime(some_file)
>>> dt = datetime.fromtimestamp(ts, timezone.utc)
>>> dt.astimezone().isoformat()
'2015-11-27T00:29:06.839600-05:00'
代码假设您的本地时区是东部时区(ET),并且您的系统为给定的POSIX时间戳(ts)提供了正确的UTC偏移量,也就是说,Python可以访问您系统上的历史时区数据库,或者时区在给定日期具有相同的规则。
如果你需要一个便携的解决方案;使用pytz模块来访问tz数据库:
>>> import os
>>> from datetime import datetime
>>> import pytz # pip install pytz
>>> ts = os.path.getctime(some_file)
>>> dt = datetime.fromtimestamp(ts, pytz.timezone('America/New_York'))
>>> dt.isoformat()
'2015-11-27T00:29:06.839600-05:00'
在这种情况下,结果是一样的。
如果需要时区名称/缩写/时区id,请单独保存。
>>> dt.astimezone().strftime('%Y-%m-%d %H:%M:%S%z (%Z)')
'2015-11-27 00:29:06-0500 (EST)'
注意:不,:在UTC偏移量和EST时区缩写不是ISO 8601时间格式的一部分。它不是唯一的。
Different libraries/different versions of the same library may use different time zone rules for the same date/timezone. If it is a future date then the rules might be unknown yet. In other words, the same UTC time may correspond to a different local time depending on what rules you use -- saving a time in ISO 8601 format preserves UTC time and the local time that corresponds to the current time zone rules in use on your platform. You might need to recalculate the local time on a different platform if it has different rules.
在estani的精彩回答中加入一个小变化
本地到ISO 8601,带时区,没有微秒信息(Python 3):
import datetime, time
utc_offset_sec = time.altzone if time.localtime().tm_isdst else time.timezone
utc_offset = datetime.timedelta(seconds=-utc_offset_sec)
datetime.datetime.now().replace(microsecond=0, tzinfo=datetime.timezone(offset=utc_offset)).isoformat()
样例输出:
'2019-11-06T12:12:06-08:00'
经过测试,这个输出可以被Javascript Date和c# DateTime/DateTimeOffset解析