Reputation: 24508
the dataset that i want 1 file from. I want to get one file from it - 'application_train.csv'.
I did pip install kaggle
. The official page gives me one liner to download the entire dataset.
kaggle competitions download -c home-credit-default-risk
But i want only 1 file.
something kaggle competitions download -c home-credit-default-risk application_train.csv
, but it s not working
what's the command to download one file from kaggle?
Upvotes: 2
Views: 2513
Reputation: 24508
the official instructions does have the answer
kaggle competitions files home-credit-default-risk
to list fileskaggle competitions download home-credit-default-risk -f application_train.csv.7z'
Upvotes: 3