diff --git a/kedro-datasets/kedro_datasets/ibis/file_dataset.py b/kedro-datasets/kedro_datasets/ibis/file_dataset.py index 0f35505a9..11b58bc32 100644 --- a/kedro-datasets/kedro_datasets/ibis/file_dataset.py +++ b/kedro-datasets/kedro_datasets/ibis/file_dataset.py @@ -21,7 +21,7 @@ class FileDataset(AbstractVersionedDataset[ir.Table, ir.Table]): .. code-block:: yaml cars: - type: ibis.TableDataset + type: ibis.FileDataset filepath: data/01_raw/company/cars.csv file_format: csv table_name: cars @@ -35,6 +35,14 @@ class FileDataset(AbstractVersionedDataset[ir.Table, ir.Table]): sep: "," nullstr: "#NA" + motorbikes: + type: ibis.FileDataset + filepath: s3://your_bucket/data/02_intermediate/company/motorbikes/ + file_format: delta + table_name: motorbikes + connection: + backend: polars + Example usage for the `Python API `_: