Skip to content

lp.read_iceberg

Reads an Apache Iceberg table and returns a LazyFrame.

Parameters:

Name Type Description Default
path str

Path to the Apache Iceberg table.

required

Returns:

Name Type Description
LazyFrame LazyFrame

A LazyFrame containing the data from the Apache Iceberg table.

Example:

import lazy_pandas as lp
df = lp.read_iceberg('s3://bucket/path_to_iceberg_table')
df.head()