I got a .Net Date Object back from my get request that looks like this
/Date(1503528300000-0500)/
I see this post Date conversion .NET JSON to ISO
about how to convert it to ISO. but how about Python dateTime
(not php)? Ultimately I want to use datetime.datetime.now()
to compare with the converted datetime and get the difference.
and can someone please explain what is the part after the -
? in this case what is the 0500
?