Zdobądź czas ze znacznika czasu w Python
# import the date class
from datetime import datetime
# Getting Datetime from timestamp
date_time = datetime.fromtimestamp(1434323424)
print("Datetime from timestamp:", date_time)
Outrageous Ostrich