Obtenha tempo com o timestamp em 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