//parses some string into that format.
datetime1 = datetime.strptime(somestring, "%Y-%m-%dT%H:%M:%S")
//gets the seconds from the above date.
timestamp1 = time.mktime(datetime1.timetuple())
//adds milliseconds to the above seconds.
timeInMillis = int(timestamp1) * 1000
我如何(在该代码中的任何时候)将日期转换为 UTC 格式?似乎一个世纪以来,我一直在研究 API,但找不到任何可以工作的东西。任何人都可以帮忙吗?我相信它目前正在将其变成东部时间(但是我在 GMT 但想要 UTC)。
编辑:我给了最接近我最终发现的那个人的答案。
datetime1 = datetime.strptime(somestring, someformat)
timeInSeconds = calendar.timegm(datetime1.utctimetuple())
timeInMillis = timeInSeconds * 1000
:)