Python Arrow milliseconds

7k Views Asked by At

I am trying to figure out one simple thing - how to convert arrow.Arrow object into milliseconds. I was reading following thread but it still not clear to me how to get a long number in milliseconds.

I want something like:

def get_millis(time: arrow.Arrow):
     ... some magic goes here ...


print(get_millis(time))     
OUTPUT: 
1518129553227 

Thanks

5

There are 5 best solutions below

0
On BEST ANSWER

This is an inelegant answer: from your linked question, you can get the milliseconds as a string and then add them to the timestamp:

import arrow
now = arrow.utcnow()
s = now.timestamp
ms = int(now.format("SSS"))
print(s * 1000 + ms)

Which prints:

1518131043594
0
On

Here is a readable way:

import arrow

def get_millis():
    return int(arrow.utcnow().timestamp() * 1000)
0
On

You can also format to ms official docs and then parse to int and cut it to the length than you needed.

int(arrow.utcnow().format("x")[:13])
2
On

Essentially the property you're looking for is

float_timestamp

E.g.

now_millisecs = round(arrow.utcnow().float_timestamp, 3)
now_microsecs = round(arrow.utcnow().float_timestamp, 6)

if you don't like the floating point, you can take it from here with:

str(now_millisecs).replace('.', '')

I personally leave the floating point representation for both visual convenience and ease of calculations (comparisons etc.).

0
On
import arrow


def get_millis(time):
    return time.timestamp * 1000 + time.microsecond / 1000


print(get_millis(arrow.now()))