pyarrow.compute.local_timestamp#

pyarrow.compute.local_timestamp(values, /, *, memory_pool=None)#

Convert timestamp to a timezone-naive local time timestamp.

LocalTimestamp converts timezone-aware timestamp to local timestamp of the given timestamp’s timezone and removes timezone metadata. Alternative name for this timestamp is also wall clock time. If input is in UTC or without timezone, then unchanged input values without timezone metadata are returned. Null values emit null.

Parameters:
valuesArray-like or scalar-like

Argument to compute function.

memory_poolpyarrow.MemoryPool, optional

If not passed, will allocate memory from the default memory pool.