You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Mon, 27 Jun 2022 at 13:20, Quentin Joucla ***@***.***> wrote:
👋 ,
To compute the timestamp (in microseconds) we use:
time.time_ns() / 1000 if "time_ns" in time.__dict__ else time.time() * 100000
While the first one does the right conversion, the other one does not as
time.time() gives time as second. So we need 10^6 and not 10^5
—
Reply to this email directly, view it on GitHub
<#23>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAZYOP545XS5BVN3YGT4GDVREMXXANCNFSM5Z476FAA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
👋 ,
To compute the timestamp (in microseconds) we use:
While the first one does the right conversion, the other one does not as time.time() gives time as second. So we need 10^6 and not 10^5
The text was updated successfully, but these errors were encountered: