gpt4 book ai didi

python - json文件中的时间戳

转载 作者:太空宇宙 更新时间:2023-11-04 09:06:39 30 4
gpt4 key购买 nike

我正在测试这个 RESTFul whois API。

如果日期是 unix 时间戳格式,我会感到困惑。但我不这么认为,因为:

print time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(int("1340578800000")))

给我:

 ValueError: timestamp out of range for platform time_t

可以在这里找到日期

updated: 1340578800000 

在这个文件中:

http://www.restfulwhois.com/example

我在网站上找不到任何电子邮件或支持,这就是我在这里提问的原因。你怎么认为 ?

最佳答案

您拥有的值是自纪元以来的毫秒数和time.localtime需要秒数。

[from gmtime()]: Convert a time expressed in seconds since the epoch to ...

请注意,虽然您恢复的字符串在这两者之间没有区别,但更普遍适用的解决方案是可能进行浮点除法以保留毫秒数。

>>> time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(int("1340578800000") / 1000))
'2012-06-24 18:00:00'
>>> time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(int("1340578800000") / 1000.))
'2012-06-24 18:00:00'

关于python - json文件中的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19962249/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com