I would like to get the datetime of the program converted to a int, What I want is:
import datetime
print(datetime.datetime.utcnow())
> 2021-01-12 09:15:16.9791000 # the time I ran the command
into this:
> 202101120915169791000
How can I do this?