diff --git a/docs/index.md b/docs/index.md index 8550fea625..bbe4f348b1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -57,11 +57,13 @@ Or we can load the data into a Polars `DataFrame` with `pl.read_delta`: import polars as pl new_df = pl.read_delta("delta_table_dir") ``` + Or we can load the data with DuckDB: ```python import duckdb duckdb.query("SELECT * FROM delta_scan('./delta_table_dir')") ``` + Or we can load the data with DataFusion: ```python from datafusion import SessionContext