Reputation:
I want to download all notebook(kernel) for MNIST dataset in Kaggle. I have no knowldege about web-scraping. Can anyone suggest which python module help me or steps
how can I try? Any types of help will be highly appretiated.
Upvotes: 0
Views: 776
Reputation: 562
You can use the Kaggle API to download public kernels.
kaggle kernels pull -k [KERNEL] -p /path/to/download -m
Upvotes: 1