1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-12 22:45:54 +05:30
gists/python-programming/oneliners/get_unix_epoch_seconds.py

10 lines
217 B
Python

#!/usr/bin/python3
# get_unix_epoch_seconds.py
#
# Author: Intel A80486DX2-66
# License: Unlicense
print(__import__("math").floor(__import__("datetime").datetime.now().\
timestamp()))