unix timestamp是int
,它给出自1970年1月1日UTC以来的秒数。
有没有办法使用python将.NET时间戳转换为unix时间戳?或者这只能在C#中完成? 任何帮助将不胜感激。
类似的问题:How to convert a Unix timestamp to DateTime and vice versa?这包含如何在C中执行此操作我正在寻找在python 34中执行此操作的方法
答案 0 :(得分:0)
有没有办法使用python将.NET时间戳转换为unix时间戳?
posix_epoch_as_dotnet = 621355968000000000
# convert .NET timestamp to POSIX timestamp
posix_timestamp = (130900894153614080 - posix_epoch_as_dotnet) // 10**7
很容易在表示UTC时间的日期时间对象和时间戳之间进行转换:
#!/usr/bin/env python
from datetime import datetime, timedelta
dotnet_epoch = datetime(1, 1, 1)
posix_epoch = datetime(1970, 1, 1)
utc_time = dotnet_epoch + timedelta(microseconds=dotnet_timestamp//10)
utc_time = posix_epoch + timedelta(seconds=posix_timestamp)
并返回:
posix_timestamp = (utc_time - posix_epoch) // timedelta(seconds=1)
dotnet_timestamp = 10 * (utc_time - dotnet_epoch) // timedelta(microseconds=1)
请参阅totimestamp()
function on how to implement // timedelta()
on older Python versions。