This repository has been archived on 2024-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
db-manager/src/helpers.py

9 lines
215 B
Python
Raw Normal View History

2023-06-03 21:05:35 +01:00
import time
one_day_in_seconds = 84600
two_weeks_in_seconds = 1209600
2023-06-03 21:05:35 +01:00
def getAgeInSeconds(updateTimeInSeconds :int):
now = int(time.time())
ageInSeconds :int = now - updateTimeInSeconds
return ageInSeconds