1from datetime import datetime, timezone 2 3def currentTimestamp(): 4 return int(datetime.now(timezone.utc).timestamp()) 5