pyarrow.time32 — Apache Arrow v20.0.0 (original) (raw)
pyarrow.time32(unit)#
Create instance of 32-bit time (time of day) type with unit resolution.
Parameters:
unitstr
one of ‘s’ [second], or ‘ms’ [millisecond]
Returns:
Examples
import pyarrow as pa pa.time32('s') Time32Type(time32[s]) pa.time32('ms') Time32Type(time32[ms])