Answers for "epoch second to python datetime"

1

convert from epoch to utc python

>>> datetime.datetime.utcfromtimestamp(1347517370).strftime('%Y-%m-%d %H:%M:%S')
  '2012-09-13 06:22:50'
Posted by: Guest on December-27-2020
0

python epoch to datetime

>>> datetime.datetime.fromtimestamp(1284286794)
datetime.datetime(2010, 9, 12, 11, 19, 54)
Posted by: Guest on July-15-2020

Code answers related to "epoch second to python datetime"

Python Answers by Framework

Browse Popular Code Answers by Language