import pyarrow as pa

obj = pa.table({"a": [1, 2], "b": ["x", "y"]})

import pretty_little_summary as pls
result = pls.describe(obj)
print(result.content)
