A bit of code shows {"time":1578475688
. This doesn't match the time that it was at the time. The time was around 5:27 pm at this time, and I am wondering what this means.
Asked
Active
Viewed 55 times
1 Answers
1
What you got was a UNIX Timestamp. A UNIX Timestamp shows you the time that has passed since Jan 01 1970. (UTC)
You can't really see the time how we normally read it in the number you get but you can look it up through websites like these: https://www.unixtimestamp.com/index.php
Hopefully this can help you understand what the number you got is.

THess
- 1,003
- 1
- 13
- 21
-
Is there a way that I can use Python to convert the unix timestamp to normal time? – jso8910 Jan 08 '20 at 09:51
-
Then I'd recommend using something like `datetime` and `datetime.strftime('%Y-%m-%dT%H:%M:%S')`. Here's also the Documentation for `strftime`: https://docs.python.org/2/library/datetime.html#strftime-strptime-behavior – THess Jan 08 '20 at 09:54