Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
WISEPLAT
GitHub Repository: WISEPLAT/python-code
Path: blob/master/ invest-robot-contest_NeuroInvest-main/NeuroInvest/utility.py
12266 views
1
from datetime import datetime, timezone
2
3
def currentTimestamp():
4
return int(datetime.now(timezone.utc).timestamp())
5