download_kaggle_dataset
Download files from a specific Kaggle dataset by providing the dataset reference and optional download path. Simplifies data retrieval for analysis and projects.
Instructions
Downloads files for a specific Kaggle dataset. Args: dataset_ref: The reference of the dataset (e.g., 'username/dataset-slug'). download_path: Optional. The path to download the files to. Defaults to '<project_root>/datasets/<dataset_slug>'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_ref | Yes | ||
download_path | No |
Input Schema (JSON Schema)
{
"properties": {
"dataset_ref": {
"title": "Dataset Ref",
"type": "string"
},
"download_path": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Download Path"
}
},
"required": [
"dataset_ref"
],
"title": "download_kaggle_datasetArguments",
"type": "object"
}