hot questions tagged unix-time - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:18:47Z http://stackoverflow.com/feeds/tag?tagnames=unix-time&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1077285/how-to-specify-time-zone-utc-when-converting-to-unix-time-python 1 How to specify time zone (UTC) when converting to Unix time? (Python) rick 2009-07-03T00:00:45Z 2009-07-03T00:33:03Z <p>I have a utc timestamp in the IS8601 format and am trying to convert it to unix time. This is my console session:</p> <pre><code>In [9]: mydate Out[9]: '2009-07-17T01:21:00.000Z' In [10]: parseddate = iso8601.parse_date(mydate) In [14]: ti = time.mktime(parseddate.timetuple()) In [25]: datetime.datetime.utcfromtimestamp(ti) Out[25]: datetime.datetime(2009, 7, 17, 7, 21) In [26]: datetime.datetime.fromtimestamp(ti) Out[26]: datetime.datetime(2009, 7, 17, 2, 21) In [27]: ti Out[27]: 1247815260.0 In [28]: parseddate Out[28]: datetime.datetime(2009, 7, 17, 1, 21, tzinfo=&lt;iso8601.iso8601.Utc object at 0x01D74C70&gt;) </code></pre> <p>As you can see, I can't get the correct time back. The hour is ahead by one if i use fromtimestamp(), and it's ahead by six hours if i use utcfromtimestamp()</p> <p>Any advice?</p> <p>Thanks!</p> 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/1007060/midnight-in-utc-time-zone-with-unix-timestamp 0 Midnight in UTC time zone with unix timestamp vava 2009-06-17T13:34:04Z 2009-06-17T19:48:47Z <p>I was looking for a numeric representation for a date and unix time for midnight (in UTC) seems to be reasonable choice for that. However, as I'm not sure in my math skills, so is</p> <pre><code>date = date - date % (24 * 60 * 60); </code></pre> <p>where <code>date</code> is unix timestamp, the way to do that? Is there any simpler method?</p> http://stackoverflow.com/questions/247373/what-time-format-is-this-not-unix-not-utc-nothing 6 What time format is this? (not UNIX, not UTC, nothing) mauriciopastrana 2008-10-29T15:57:58Z 2008-10-29T19:53:42Z <p>I'm importing data from another system to MySQL, its a CSV file. The "Date" field however contains cryptic of 3-digit time entries, here's a random sample set:</p> <pre><code>&gt; 540 &gt; 780 &gt; 620 &gt; 965 </code></pre> <p>What's this? obviously its not 5:40 and 6:20. But it's not UNIX either (I tried 1225295**XXX** before I realized the time range this represents is about 16 minutes)</p> <p>Anyone recognize these?</p> <p><strong>Update</strong>: I just noticed that further down in the replies, a coworker who's closer to the data just <a href="http://stackoverflow.com/questions/247373/what-time-format-is-this-not-unix-not-utc-nothing#247456">opened a new SO account and added some more data</a>. It seems like these numeric entries are just time entries (not date). Still clueless. </p> <p>IMHO, if no one can recognise this, then it probably isn't some (if obscure) standard time format and is more likely that these entries are foreign keys.</p> <p><strong>Update 2</strong>: Many thanks to all! <a href="http://stackoverflow.com/questions/247373/what-time-format-is-this-not-unix-not-utc-nothing#248123">we found the answer visually</a>, but as usual, <a href="http://stackoverflow.com/questions/247373/what-time-format-is-this-not-unix-not-utc-nothing#248070">SO pulled through clutch</a>.</p> <p>Cheers,</p> <p>/mp</p>