Python Unix time doesn't work in Javascript - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:29:42Zhttp://stackoverflow.com/feeds/question/1077393http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript2Python Unix time doesn't work in Javascriptrick2009-07-03T00:55:59Z2009-07-03T01:07:04Z
<p>In Python, using calendar.timegm(), I get a 10 digit result for a unix timestamp. When I put this into Javscript's setTime() function, it comes up with a date in 1970. It evidently needs a unix timestamp that is 13 digits long. How can this happen? Are they both counting from the same date? </p>
<p>How can I use the same unix timestamp between these two languages?</p>
<p>In Python:</p>
<pre><code>In [60]: parseddate.utctimetuple()
Out[60]: (2009, 7, 17, 1, 21, 0, 4, 198, 0)
In [61]: calendar.timegm(parseddate.utctimetuple())
Out[61]: 1247793660
</code></pre>
<p>In Firebug:</p>
<pre><code>>>> var d = new Date(); d.setTime(1247793660); d.toUTCString()
"Thu, 15 Jan 1970 10:36:55 GMT"
</code></pre>
http://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript/1077401#10774011Answer by Greg Hewgill for Python Unix time doesn't work in JavascriptGreg Hewgill2009-07-03T00:59:42Z2009-07-03T00:59:42Z<p>Are you possibly mixing up seconds-since-1970 with milliseconds-since-1970?</p>
http://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript/1077402#10774021Answer by CMS for Python Unix time doesn't work in JavascriptCMS2009-07-03T01:00:10Z2009-07-03T01:00:10Z<p>JavaScript <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Date" rel="nofollow">Date constructor</a> works with milliseconds, you should multiply the Python unix time by 1000.</p>
<pre><code>var unixTimestampSeg = 1247793660;
var date = new Date(unixTimestampSeg*1000);
</code></pre>
http://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript/1077403#10774038Answer by Reed Copsey for Python Unix time doesn't work in JavascriptReed Copsey2009-07-03T01:00:52Z2009-07-03T01:00:52Z<p>timegm is based on Unix's <a href="http://linux.about.com/library/cmd/blcmdl3%5Fgmtime.htm" rel="nofollow">gmtime()</a> method, which return seconds since Jan 1, 1970.</p>
<p>Javascripts <a href="http://www.w3schools.com/jsref/jsref%5FsetTime.asp" rel="nofollow">setTime()</a> method is milliseconds since that date. You'll need to multiply your seconds times 1000 to convert to the format expected by Javascript.</p>
http://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript/1077414#10774143Answer by Ben Noland for Python Unix time doesn't work in JavascriptBen Noland2009-07-03T01:07:04Z2009-07-03T01:07:04Z<p>Here are a couple of python methods I use to convert to and from javascript/datetime.</p>
<pre><code>def to_datetime(js_timestamp):
return datetime.datetime.fromtimestamp(js_timestamp/1000)
def js_timestamp_from_datetime(dt):
return 1000 * time.mktime(dt.timetuple())
</code></pre>
<p>In javascript you would do:</p>
<pre><code>var dt = new Date();
dt.setTime(js_timestamp);
</code></pre>