user14287724
user14287724

Reputation:

How can I download notebook from Kaggle Using Python?

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

Answers (1)

specbug
specbug

Reputation: 562

You can use the Kaggle API to download public kernels.

kaggle kernels pull -k [KERNEL] -p /path/to/download -m

Upvotes: 1

Related Questions