pyarrow.large_utf8#

pyarrow.large_utf8()#

Alias for large_string().

Examples

Create an instance of large UTF8 variable-length binary type:

>>>importpyarrowaspa>>>pa.large_utf8()DataType(large_string)

and use the type to create an array:

>>>pa.array(['foo','bar']*50,type=pa.large_utf8())<pyarrow.lib.LargeStringArray object at ...>[  "foo",  "bar",  ...  "foo",  "bar"]