from loadfile import load
orders = load("data/orders.parquet", columns=["order_id", "amount"])
print(orders.head())
Read selected columns with loadfile
A small example using local files; install loadfile before running it.
A small example using local files; install loadfile before running it.
from loadfile import load
orders = load("data/orders.parquet", columns=["order_id", "amount"])
print(orders.head())