I found the time format below on kickstarter website:
2015-10-02T20:40:00-04:00
2015-10-19T19:02:40-04:00
2015-09-26T18:53:30-04:00
But I have no idea what's this format? Does it has timezone?
I use python, so I want to know how can I convert it to Python time format?
And I found a nodejs project (source code below) which can convert to string like 1441424612000
.
timeEnd: function ($) {
var endTimeStr, date, endTimeInMillis;
endTimeStr = $('#project_duration_data').attr('data-end_time');
date = new Date(endTimeStr);
endTimeInMillis = date.getTime();
return endTimeInMillis;
},
What is this time format? Can Python do this?