Tor-Search-Api / helper /uptime.py
SoulofSukuna's picture
Upload 44 files
e9d67ff verified
raw
history blame contribute delete
174 Bytes
import time
def getUptime(startTime: time) -> time:
"""
Returns the number of seconds since the program started.
"""
return time.time() - startTime