pyarrow.time64

pyarrow.time64(unit)

Create instance of 64-bit time (time of day) type with unit resolution.

Parameters

unit (str) – One of ‘us’ [microsecond], or ‘ns’ [nanosecond].

Returns

type (pyarrow.Time64Type)

Examples

>>> import pyarrow as pa
>>> pa.time64('us')
Time64Type(time64[us])
>>> pa.time64('ns')
Time64Type(time64[ns])