diff --git a/docs/hub/storage-buckets-integrations.md b/docs/hub/storage-buckets-integrations.md index db5520970..7788c407e 100644 --- a/docs/hub/storage-buckets-integrations.md +++ b/docs/hub/storage-buckets-integrations.md @@ -21,6 +21,16 @@ import dask.dataframe as dd df = dd.read_parquet("hf://buckets/username/my-bucket/data.parquet") ``` +## Daft + +Daft supports `hf://buckets/` paths natively, with [Xet-accelerated reads](https://docs.daft.ai/en/stable/connectors/huggingface/) enabled by default: + +```python +import daft + +df = daft.read_parquet("hf://buckets/username/my-bucket/data.parquet") +``` + ## PyArrow ```python @@ -88,4 +98,4 @@ text_files = hffs.glob("buckets/username/my-bucket/*.txt") ## Coming soon -Native `hf://` URL support is on the way for more libraries — including Polars, DuckDB, Daft, and webdataset. In the meantime, all of these already work today through the [S3-compatible API](./storage-buckets-s3). +Native `hf://` URL support is on the way for more libraries — including Polars, DuckDB, and webdataset. In the meantime, all of these already work today through the [S3-compatible API](./storage-buckets-s3).