将ASP.Net JSON日期转换为Python日期时间
作者:互联网
这个问题已经在这里有了答案: > Date conversion .NET JSON to ISO 4个
我从其他人那里得到的答复是一个类似的时间格式
ScheduleDate = "\/Date(1374811200000-0400)\/"
StartTime = "\/Date(-2208931200000-0500)\/"
我如何将以上时间转换为格式
"2012-01-01T10:30:00-05:00"
解决方法:
这是我想出的,但是您的示例输入都不与示例输出匹配,因此我不确定此处是否存在时区偏移错误.
#!/usr/bin/env python
import datetime
def parse_date(datestring):
timepart = datestring.split('(')[1].split(')')[0]
milliseconds = int(timepart[:-5])
hours = int(timepart[-5:]) / 100
time = milliseconds / 1000
dt = datetime.datetime.utcfromtimestamp(time + hours * 3600)
return dt.strftime("%Y-%m-%dT%H:%M:%S") + '%02d:00' % hours
ScheduleDate = "\/Date(1374811200000-0400)\/"
StartTime = "\/Date(-2208931200000-0500)\/"
print(parse_date(ScheduleDate))
print(parse_date(StartTime))
Windows似乎不喜欢datetime中的负值.(utc)?fromtimestamp().可能要求它从Unix时代计算一个负时间增量:
#!/usr/bin/env python
import datetime
EPOCH = datetime.datetime.utcfromtimestamp(0)
def parse_date(datestring):
timepart = datestring.split('(')[1].split(')')[0]
milliseconds = int(timepart[:-5])
hours = int(timepart[-5:]) / 100
adjustedseconds = milliseconds / 1000 + hours * 3600
dt = EPOCH + datetime.timedelta(seconds=adjustedseconds)
return dt.strftime("%Y-%m-%dT%H:%M:%S") + '%02d:00' % hours
ScheduleDate = "\/Date(1374811200000-0400)\/"
StartTime = "\/Date(-2208931200000-0500)\/"
print(parse_date(ScheduleDate))
print(parse_date(StartTime))
标签:python-dateutil,python,time 来源: https://codeday.me/bug/20191122/2063773.html