pyarrow.time64

pyarrow.time64(unit)

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

Parameters
unitstr

One of ‘us’ [microsecond], or ‘ns’ [nanosecond].

Returns
typepyarrow.Time64Type

Examples

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