I have a python code that works for a single record:
from datetime import datetime, timedelta
utc = datetime(1980, 1, 6) + timedelta(seconds=1325841623 - (35 - 17))
print(utc)
Result: 2022-01-10 09:20:05
How can I modify the code so it can calculate each record in the field by that formula?