Python Unix time doesn't work in Javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:29:42Z http://stackoverflow.com/feeds/question/1077393 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077393/python-unix-time-doesnt-work-in-javascript 2 Python Unix time doesn't work in Javascript rick 2009-07-03T00:55:59Z 2009-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>&gt;&gt;&gt; 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#1077401 1 Answer by Greg Hewgill for Python Unix time doesn't work in Javascript Greg Hewgill 2009-07-03T00:59:42Z 2009-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#1077402 1 Answer by CMS for Python Unix time doesn't work in Javascript CMS 2009-07-03T01:00:10Z 2009-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#1077403 8 Answer by Reed Copsey for Python Unix time doesn't work in Javascript Reed Copsey 2009-07-03T01:00:52Z 2009-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#1077414 3 Answer by Ben Noland for Python Unix time doesn't work in Javascript Ben Noland 2009-07-03T01:07:04Z 2009-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>