Skip to content

lp.read_delta

Reads a Delta Lake table and returns a LazyFrame.

Parameters:

Name Type Description Default
path str

Path to the Delta Lake table.

required

Returns:

Name Type Description
LazyFrame LazyFrame

A LazyFrame containing the data from the Delta Lake table.

Example:

import lazy_pandas as lp
from datetime import date
df = lp.read_delta('s3://bucket/path_to_delta_table')
df.head()