Rachid Cherqaoui
06/23/2025, 7:34 AMCSVDataset. Here's the relevant entry from my `catalog.yml`:
yaml
cool_dataset:
type: pandas.CSVDataSet
filepath:
<sftp://my-sftp-server/outbox/DW_Extracts/my_file.csv>
load_args: {}
save_args:
index: False
When I run:
python
df = catalog.load("cool_dataset")
I get the following error:
It seems like Kedro/Pandas is trying to use
ur`llib`
to open the SFTP URL, which doesn't support the
sftp:// protocol natively.
Has anyone successfully used Kedro to load files from SFTP? If so, could you share your config/setup?datajoely
06/23/2025, 7:35 AMRachid Cherqaoui
06/23/2025, 7:38 AMRachid Cherqaoui
06/23/2025, 7:40 AMJuan Luis
06/23/2025, 8:09 AMJuan Luis
06/23/2025, 8:10 AMRachid Cherqaoui
06/23/2025, 9:14 AMJuan Luis
06/23/2025, 9:34 AM