Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-44711: [Docs][Python] Add missing canonical extension types to PyArrow arrays and datatypes docs #44880

Merged
merged 4 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/source/python/api/arrays.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ may expose data type-specific methods or properties.
ExtensionArray
FixedShapeTensorArray
OpaqueArray
JsonArray
UuidArray
Bool8Array
Decimal256Array
ianmcook marked this conversation as resolved.
Show resolved Hide resolved

kou marked this conversation as resolved.
Show resolved Hide resolved

.. _api.scalar:

Expand Down
16 changes: 16 additions & 0 deletions docs/source/python/api/datatypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ These should be used to create Arrow data types and schemas.
field
schema
from_numpy_dtype
bool8
uuid
json_
union
dense_union
sparse_union
ianmcook marked this conversation as resolved.
Show resolved Hide resolved

Utility Functions
-----------------
Expand Down Expand Up @@ -109,6 +115,12 @@ functions above.
Field
Schema
RunEndEncodedType
ListViewType
LargeListViewType
FixedSizeListType
SparseUnionType
DenseUnionType
DurationType
ianmcook marked this conversation as resolved.
Show resolved Hide resolved

Specific classes and functions for extension types.

Expand All @@ -117,6 +129,7 @@ Specific classes and functions for extension types.

ExtensionType
PyExtensionType
UnknownExtensionType
register_extension_type
unregister_extension_type

Expand All @@ -128,6 +141,9 @@ implemented by PyArrow.

FixedShapeTensorType
OpaqueType
JsonType
UuidType
Bool8Type

.. _api.types.checking:
.. currentmodule:: pyarrow.types
Expand Down