Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A website I am looking at has the following code.

var d = new Date(1362236400000);

This javascript date object somehow encodes the following HTML output,

"2/3/2013 10:00"

Could someone please explain this encoding? I need to make a python script that manipulates those javascript numbers to recreate the HTML output. Thanks!

share|improve this question
It's called timestamp (milliseconds format) – Sam Mar 2 at 21:42
1  
@Sam: milliseconds, actually. – Martijn Pieters Mar 2 at 21:44

1 Answer

up vote 5 down vote accepted

The value is the number of miliseconds since the epoch. In Python that could be handled with the datetime.datetime.fromtimestamp() constructor:

>>> import datetime
>>> datetime.datetime.fromtimestamp(1362236400000/1000)
datetime.datetime(2013, 3, 2, 16, 0)
share|improve this answer
thanks so much Martijn. I spent over 5 hours already trying various things like playing around with this number in a javascript console, trying to use pyv8 to run javascript in my python program and running spynner. Your answer is just what i was looking for!! – appleLover Mar 2 at 22:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.