我在 Python 中有一个表示 unix 时间戳(即“1284101485”)的字符串,我想将其转换为可读日期。当我使用 time.strftime
时,我得到一个 TypeError
:
>>>import time
>>>print time.strftime("%B %d %Y", "1284101485")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: argument must be 9-item sequence, not str
使用 datetime
模块:
from datetime import datetime
ts = int('1284101485')
# if you encounter a "year is out of range" error the timestamp
# may be in milliseconds, try `ts /= 1000` in that case
print(datetime.utcfromtimestamp(ts).strftime('%Y-%m-%d %H:%M:%S'))
>>> from datetime import datetime
>>> datetime.fromtimestamp(1172969203.1)
datetime.datetime(2007, 3, 4, 0, 46, 43, 100000)
取自 http://seehuhn.de/pages/pdate
print(datetime.utcfromtimestamp(unix_time_value)
将使其易于阅读。 [1]:stackoverflow.com/questions/3682748/…
投票最多的答案建议使用 fromtimestamp ,因为它使用本地时区,因此很容易出错。为避免出现问题,更好的方法是使用 UTC:
datetime.datetime.utcfromtimestamp(posix_time).strftime('%Y-%m-%dT%H:%M:%SZ')
其中 posix_time 是您要转换的 Posix 纪元时间
TZ=right/UTC date
vs. TZ=UTC date
是 Mon 7 Sep 15:58:05 UTC 2020
vs. Mon 7 Sep 15:58:32 UTC 2020
(差异可能会根据闰秒数而变化)
ValueError: year 53085 is out of range
>>> import time
>>> time.ctime(int("1284101485"))
'Fri Sep 10 16:51:25 2010'
>>> time.strftime("%D %H:%M", time.localtime(int("1284101485")))
'09/10/10 16:51'
time.ctime()
和 time.localtime()
可能会因过去日期而失败。您需要一个历史时区数据库,例如 pytz
模块(或您的操作系统)提供的。或者只是在 UTC 中工作并使用 time.gmtime()
。 datetime
可能提供更宽的日期范围,因此可以使用 datetime.utcfromtimestamp()
代替 time
函数。
有两个部分:
将 unix 时间戳(“自纪元以来的秒数”)转换为本地时间以所需格式显示本地时间。
即使本地时区过去有不同的 utc 偏移量并且 python 无法访问 tz 数据库,获取本地时间的可移植方法是使用 pytz
时区:
#!/usr/bin/env python
from datetime import datetime
import tzlocal # $ pip install tzlocal
unix_timestamp = float("1284101485")
local_timezone = tzlocal.get_localzone() # get pytz timezone
local_time = datetime.fromtimestamp(unix_timestamp, local_timezone)
要显示它,您可以使用系统支持的任何时间格式,例如:
print(local_time.strftime("%Y-%m-%d %H:%M:%S.%f%z (%Z)"))
print(local_time.strftime("%B %d %Y")) # print date in your format
如果您不需要本地时间,请改为获取可读的 UTC 时间:
utc_time = datetime.utcfromtimestamp(unix_timestamp)
print(utc_time.strftime("%Y-%m-%d %H:%M:%S.%f+00:00 (UTC)"))
如果您不关心可能影响返回日期的时区问题,或者 python 是否可以访问系统上的 tz 数据库:
local_time = datetime.fromtimestamp(unix_timestamp)
print(local_time.strftime("%Y-%m-%d %H:%M:%S.%f"))
在 Python 3 上,您可以仅使用 stdlib 获得时区感知日期时间(如果 python 无法访问系统上的 tz 数据库,例如在 Windows 上,则 UTC 偏移量可能是错误的):
#!/usr/bin/env python3
from datetime import datetime, timezone
utc_time = datetime.fromtimestamp(unix_timestamp, timezone.utc)
local_time = utc_time.astimezone()
print(local_time.strftime("%Y-%m-%d %H:%M:%S.%f%z (%Z)"))
time
模块中的函数是相应 C API 的精简包装器,因此它们的可移植性可能不如相应的 datetime
方法,否则您也可以使用它们:
#!/usr/bin/env python
import time
unix_timestamp = int("1284101485")
utc_time = time.gmtime(unix_timestamp)
local_time = time.localtime(unix_timestamp)
print(time.strftime("%Y-%m-%d %H:%M:%S", local_time))
print(time.strftime("%Y-%m-%d %H:%M:%S+00:00 (UTC)", utc_time))
.timestamp()
方法。如何转换时间字符串取决于它的格式——在一般情况下它是模棱两可的,但对于各种情况有很多解决方案。
在 Python 3.6+ 中:
import datetime
timestamp = 1642445213
value = datetime.datetime.fromtimestamp(timestamp)
print(f"{value:%Y-%m-%d %H:%M:%S}")
输出(当地时间)
2022-01-17 20:46:53
解释
第 1 行:导入日期时间库。
第 2 行:Unix 时间,即自 1970-01-01 以来的秒数。
第 3 行:将其转换为 unix 时间对象,检查:type(value)
第 4 行:以与 strp 相同的格式打印。当地时间。要以 UTC 打印,请参见下面的示例。
奖金
要将日期保存为字符串然后打印它,请使用以下命令:
my_date = f"{value:%Y-%m-%d %H:%M:%S}"
print(my_date)
以 UTC 输出:
value = datetime.datetime.fromtimestamp(timestamp, tz=datetime.timezone.utc)
# 2022-01-17 18:50:52
fromtimestamp
中设置 tz
参数,例如设置为 datetime.timezone.utc
。
除了使用 time/datetime 包,pandas 也可以用来解决同样的问题。下面是我们如何使用 pandas 将时间戳转换为可读日期:
时间戳可以有两种格式:
13 位(毫秒) - 要将毫秒转换为日期,请使用: import pandas result_ms=pandas.to_datetime('1493530261000',unit='ms') str(result_ms) 输出:'2017-04-30 05:31:01' 10 位(秒) - 要将秒转换为日期,请使用: import pandas result_s=pandas.to_datetime('1493530261',unit='s') str(result_s) 输出:'2017-04-30 05:31:01'
对于 UNIX 时间戳中的人类可读时间戳,我之前在脚本中使用过它:
import os, datetime
datetime.datetime.fromtimestamp(float(os.path.getmtime("FILE"))).strftime("%B %d, %Y")
输出:
'2012 年 12 月 26 日'
您可以像这样转换当前时间
t=datetime.fromtimestamp(time.time())
t.strftime('%Y-%m-%d')
'2012-03-07'
将字符串中的日期转换为不同的格式。
import datetime,time
def createDateObject(str_date,strFormat="%Y-%m-%d"):
timeStamp = time.mktime(time.strptime(str_date,strFormat))
return datetime.datetime.fromtimestamp(timeStamp)
def FormatDate(objectDate,strFormat="%Y-%m-%d"):
return objectDate.strftime(strFormat)
Usage
=====
o=createDateObject('2013-03-03')
print FormatDate(o,'%d-%m-%Y')
Output 03-03-2013
timestamp ="124542124"
value = datetime.datetime.fromtimestamp(timestamp)
exct_time = value.strftime('%d %B %Y %H:%M:%S')
还可以从时间戳中获取可读的日期,也可以更改日期的格式。
请注意,utcfromtimestamp
可能导致 unexpected results,因为它返回一个简单的日期时间对象。 Python 将原始日期时间视为 本地时间 - 而 UNIX 时间指的是 UTC。
可以通过在 fromtimestamp
中设置 tz
参数来避免这种歧义:
from datetime import datetime, timezone
dtobj = datetime.fromtimestamp(1284101485, timezone.utc)
>>> print(repr(dtobj))
datetime.datetime(2010, 9, 10, 6, 51, 25, tzinfo=datetime.timezone.utc)
现在您可以格式化为字符串,例如符合 ISO8601 的格式:
>>> print(dtobj.isoformat(timespec='milliseconds').replace('+00:00', 'Z'))
2010-09-10T06:51:25.000Z
使用以下代码,希望它能解决您的问题。
import datetime as dt
print(dt.datetime.fromtimestamp(int("1284101485")).strftime('%Y-%m-%d %H:%M:%S'))
import datetime
temp = datetime.datetime.fromtimestamp(1386181800).strftime('%Y-%m-%d %H:%M:%S')
print temp
可以使用 gmtime 和 format 函数完成此操作的另一种方法;
from time import gmtime
print('{}-{}-{} {}:{}:{}'.format(*gmtime(1538654264.703337)))
输出:2018-10-4 11:57:44
如果您正在使用数据框并且不希望出现 series cannot be converted to class int
错误。使用下面的代码。
new_df= pd.to_datetime(df_new['time'], unit='s')
我刚刚成功使用:
>>> type(tstamp)
pandas.tslib.Timestamp
>>> newDt = tstamp.date()
>>> type(newDt)
datetime.date
您可以使用 easy_date 来简化:
import date_converter
my_date_string = date_converter.timestamp_to_string(1284101485, "%B %d, %Y")
strptime
和 strftime
不直观...甚至不可读...但我理解并尊重您的意见
from datetime import datetime
unixtime = int('1284101485')
# Print with local time
print(datetime.fromtimestamp(unixtime).strftime('%Y-%m-%d %H:%M:%S'))
# Print with UTC time
print(datetime.utcfromtimestamp(unixtime).strftime('%Y-%m-%d %H:%M:%S'))
datetime.fromtimestamp(timestamp):返回POSIX时间戳对应的本地日期,如time.time()返回。
datetime.utcfromtimestamp(timestamp):返回 POSIX 时间戳对应的 UTC 日期时间,tzinfo None。 (生成的对象是幼稚的。)
快速而肮脏的一个衬垫:
'-'.join(str(x) for x in list(tuple(datetime.datetime.now().timetuple())[:6]))
'2013-5-5-1-9-43'
.fromtimestamp()
可能会因过去的日期而失败。您需要一个历史时区数据库,例如pytz
模块(或您的操作系统)提供的。或者只是在 UTC 中工作并使用.utcfromtimestamp()
。pytz
计算的值进行比较。如果不清楚;问一个单独的堆栈溢出问题。pytz
solution。