mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-21 07:04:36 +02:00
7 lines
255 B
Python
7 lines
255 B
Python
import datetime
|
|
#2020-05-08 08:29:52.742737 : 11718049010
|
|
reference_date = datetime.datetime(2020, 5, 8, 8, 29, 52)
|
|
now = datetime.datetime.utcnow()
|
|
delta = (datetime.datetime.utcnow()-reference_date).total_seconds()*1000
|
|
print(int(delta/10)+11718049010)
|