Return the UTC datetime corresponding to the POSIX timestamp, with tzinfo None. (The resulting object is naive.)
classmethod datetime.utcfromtimestamp(timestamp)
datetime.fromtimestamp(timestamp, timezone.utc)
datetime(1970, 1, 1, tzinfo=timezone.utc) + timedelta(seconds=timestamp)