gpt4 book ai didi

python - Python 中从 Last.fm API 中的 UTS 到 DateTime

转载 作者:行者123 更新时间:2023-11-29 11:50:15 24 4
gpt4 key购买 nike

使用 user.getRecentTracks 方法响应的last.fm API 提供以下格式的日期:

"date": {
"#text": "11 Dec 2015, 01:41",
"uts": "1449798068"
},

这个“uts”字段是什么以及如何将其转换为Python中MySql数据库的日期时间字符串?您建议的答案是否比使用 datetime.datetime.strptime() 方法转换给定的文本字符串更有效?

最佳答案

uts 看起来像一个时间戳。该缩写可能代表 UTC 时间戳或 Unix 时间戳。我不确定是哪个,但是,将其转换为 datetime 对象很简单

>>> from datetime import datetime
>>> dt = datetime.fromtimestamp(1449798068)
>>> print(dt)
datetime.datetime(2015, 12, 10, 20, 41, 8)

#text 键的时间似乎是本地时区的时间,比之前五个小时。

关于python - Python 中从 Last.fm API 中的 UTS 到 DateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34215295/

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