Logo

Programming-Idioms

History of Idiom 98 > diff from v14 to v15

Edit summary for version 15 by Oldboy:
New Python implementation by user [Oldboy]

Version 14

2016-12-06, 12:39:06

Version 15

2017-10-28, 10:26:36

Idiom #98 Epoch seconds to date object

Convert a timestamp ts (number of seconds in epoch-time) to a date with time d. E.g. 0 -> 1970-01-01 00:00:00

Idiom #98 Epoch seconds to date object

Convert a timestamp ts (number of seconds in epoch-time) to a date with time d. E.g. 0 -> 1970-01-01 00:00:00

Imports
import datetime
Code
d = datetime.date.fromtimestamp(ts)