使用PRAW调用Reddit API。需要帮助来解释返回的创建日期时间

时间:2016-02-18 18:47:11

标签: reddit praw

徘徊在2个月前提交的""我可以在reddit UI上获得帖子的创建日期。

在我的情况下,我看的帖子有这个日期时间: 2015年12月18日星期五02:06:06 UTC

但是当我使用praw调用reddit API时,我在created_utc字段中得到了这个: 1450404366.0

我无法翻译"星期五12月18日02:06:06 UTC"到" 1450404366.0"

请帮忙!

1 个答案:

答案 0 :(得分:3)

所以reddit给你的是UNIX TIMESTAMP,它基本上就是1970年1月1日以来的秒数。(UTC)需要转换为人类可读的日期时间设置。

我建议在 python 中使用datatime模块:

示例用法:

import datetime
print(
    datetime.datetime.fromtimestamp(
        int("1284101485")
    ).strftime('%Y-%m-%d %H:%M:%S')
)

希望这有帮助!