Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions docs/source/python/api/arrays.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ may expose data type-specific methods or properties.
ListArray
FixedSizeListArray
LargeListArray
ListViewArray
LargeListViewArray
MapArray
RunEndEncodedArray
StructArray
Expand Down Expand Up @@ -135,6 +137,8 @@ classes may expose data type-specific methods or properties.
RunEndEncodedScalar
ListScalar
LargeListScalar
ListViewScalar
LargeListViewScalar
MapScalar
StructScalar
UnionScalar
Expand Down
4 changes: 4 additions & 0 deletions docs/source/python/api/datatypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ These should be used to create Arrow data types and schemas.
decimal128
list_
large_list
list_view
large_list_view
map_
struct
dictionary
Expand Down Expand Up @@ -149,6 +151,8 @@ represents a given data type (such as ``int32``) or general category
is_list
is_large_list
is_fixed_size_list
is_list_view
is_large_list_view
is_struct
is_union
is_nested
Expand Down
14 changes: 9 additions & 5 deletions python/pyarrow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,18 @@ def print_entry(label, value):
binary, string, utf8, binary_view, string_view,
large_binary, large_string, large_utf8,
decimal128, decimal256,
list_, large_list, map_, struct,
list_, large_list, list_view, large_list_view,
map_, struct,
union, sparse_union, dense_union,
dictionary,
run_end_encoded,
fixed_shape_tensor,
field,
type_for_alias,
DataType, DictionaryType, StructType,
ListType, LargeListType, MapType, FixedSizeListType,
UnionType, SparseUnionType, DenseUnionType,
ListType, LargeListType, FixedSizeListType,
ListViewType, LargeListViewType,
MapType, UnionType, SparseUnionType, DenseUnionType,
TimestampType, Time32Type, Time64Type, DurationType,
FixedSizeBinaryType, Decimal128Type, Decimal256Type,
BaseExtensionType, ExtensionType,
Expand All @@ -201,8 +203,9 @@ def print_entry(label, value):
Int32Array, UInt32Array,
Int64Array, UInt64Array,
HalfFloatArray, FloatArray, DoubleArray,
ListArray, LargeListArray, MapArray,
FixedSizeListArray, UnionArray,
ListArray, LargeListArray, FixedSizeListArray,
ListViewArray, LargeListViewArray,
MapArray, UnionArray,
BinaryArray, StringArray,
LargeBinaryArray, LargeStringArray,
BinaryViewArray, StringViewArray,
Expand All @@ -220,6 +223,7 @@ def print_entry(label, value):
HalfFloatScalar, FloatScalar, DoubleScalar,
Decimal128Scalar, Decimal256Scalar,
ListScalar, LargeListScalar, FixedSizeListScalar,
ListViewScalar, LargeListViewScalar,
Date32Scalar, Date64Scalar,
Time32Scalar, Time64Scalar,
TimestampScalar, DurationScalar,
Expand Down
Loading