This Python DateTime tutorial will teach you how to convert UNIX time to DateTime. You can convert the UNIX time to DateTime using the following code:
# Import the datetime module
import datetime
# Unix time
unix_time = 1230674354
# Convert the unix time to datetime
date_time = datetime.datetime.fromtimestamp(unix_time)
# Display the datetime
print("datetime:", str(date_time))Output:
datetime: 2008-12-31 02:59:14


