pyarrow.ipc.IpcReadOptions

class pyarrow.ipc.IpcReadOptions(bool ensure_native_endian=True, *, bool use_threads=True, list included_fields=None)

Bases: _Weakrefable

Serialization options for reading IPC format.

Parameters:
use_threadsbool

Whether to use the global CPU thread pool to parallelize any computational tasks like decompression.

ensure_native_endianbool

Whether to convert incoming data to platform-native endianness. Default is true.

included_fieldslist

If empty (the default), return all deserialized fields. If non-empty, the values are the indices of fields to read on the top-level schema.

__init__(*args, **kwargs)

Methods

__init__(*args, **kwargs)

Attributes

ensure_native_endian

included_fields

use_threads

ensure_native_endian
included_fields
use_threads