paleolimbot commented on code in PR #40818: URL: https://github.com/apache/arrow/pull/40818#discussion_r1555702181
########## docs/source/python/extending_types.rst: ########## @@ -53,6 +53,31 @@ support for this protocol by checking for the presence of those methods, and therefore accept any Arrow data (instead of harcoding support for a specific Arrow producer such as PyArrow). +For consuming data through this protocol with PyArrow, the following constructors +can be used to create the various PyArrow objects: + ++----------------------------+-----------------------------------------------+--------------------+ +| Result class | PyArrow constructor | Supported protocol | ++============================+===============================================+====================+ +| :class:`Array` | :func:`pyarrow.array` | array | ++----------------------------+-----------------------------------------------+--------------------+ +| :class:`ChunkedArray` | :func:`pyarrow.chunked_array` | array, stream | ++----------------------------+-----------------------------------------------+--------------------+ +| :class:`RecordBatch` | :func:`pyarrow.record_batch` | array | ++----------------------------+-----------------------------------------------+--------------------+ +| :class:`Table` | :func:`pyarrow.table` | array, stream | ++----------------------------+-----------------------------------------------+--------------------+ +| :class:`RecordBatchReader` | :meth:`pyarrow.RecordBatchReader.from_stream` | stream | ++----------------------------+-----------------------------------------------+--------------------+ +| :class:`Field` | :func:`pyarrow.record_batch` | schema | ++----------------------------+-----------------------------------------------+--------------------+ +| :class:`Schema` | :func:`pyarrow.record_batch` | schema | Review Comment: Shoud this be `pyarrow.field()` and `pyarrow.schema()`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
