Skip to content

Commit

Permalink
Add spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam Brannigan committed Nov 21, 2024
1 parent b13bddb commit daa297f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit daa297f

Please sign in to comment.