hot questions tagged unix-time - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T20:18:47Zhttp://stackoverflow.com/feeds/tag?tagnames=unix-time&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077285/how-to-specify-time-zone-utc-when-converting-to-unix-time-python1How to specify time zone (UTC) when converting to Unix time? (Python)rick2009-07-03T00:00:45Z2009-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=<iso8601.iso8601.Utc object at 0x01D74C70>)
</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-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/1007060/midnight-in-utc-time-zone-with-unix-timestamp0Midnight in UTC time zone with unix timestampvava2009-06-17T13:34:04Z2009-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-nothing6What time format is this? (not UNIX, not UTC, nothing)mauriciopastrana2008-10-29T15:57:58Z2008-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>> 540
> 780
> 620
> 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>