python eveapi转换到期日期

时间:2015-01-20 22:54:02

标签: python

我正在与eveapi一起参加Eve Online游戏 https://github.com/ntt/eveapi http://wiki.eve-id.net/APIv2_Account_APIKeyInfo_XML

现在我可以通过运行以下命令获取API的过期日期:

import eveapi
api = eveapi.EVEAPIConnection()
auth = api.auth(keyID=4055832, vCode="W7LF0Q8mqgYGpAbLiZgeO6bCpQq1PZ4rbgvlt8nyM4Iy1giko38rAJtEE8WuJ5wT")
expires = auth.account.APIKeyInfo().key.expires

但是这会返回以下数字1453327533 我如何将其转换为实际日期?

1 个答案:

答案 0 :(得分:0)

该数字是fromtimestamp(自UNIX纪元以来的秒数,1970年1月1日) 因此,要获得日期时间,您只需:

from datetime import datetime
datetime.fromtimestamp(int(expires))