mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-01-26 10:46:35 +00:00
7 lines
148 B
Python
7 lines
148 B
Python
|
import time
|
||
|
|
||
|
|
||
|
def get_ttl_hash(seconds=3600):
|
||
|
"""Return the same value withing `seconds` time period"""
|
||
|
return round(time.time() / seconds)
|