pyarrow.time64 — Apache Arrow v20.0.0 (original) (raw)
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:
Examples
import pyarrow as pa pa.time64('us') Time64Type(time64[us]) pa.time64('ns') Time64Type(time64[ns])