Skip to content

Instantly share code, notes, and snippets.

@KeenWarrior
Forked from jayspeidell/kaggle_download.py
Created March 22, 2019 17:59
Show Gist options
  • Save KeenWarrior/4de6e28fcc593ad47a84f0aafd6b8d95 to your computer and use it in GitHub Desktop.
Save KeenWarrior/4de6e28fcc593ad47a84f0aafd6b8d95 to your computer and use it in GitHub Desktop.
Sample script to download Kaggle files
# Info on how to get your api key (kaggle.json) here: https://github.com/Kaggle/kaggle-api#api-credentials
!pip install kaggle
api_token = {"username":"USERNAME","key":"API_KEY"}
import json
import zipfile
import os
with open('/content/.kaggle/kaggle.json', 'w') as file:
json.dump(api_token, file)
!chmod 600 /content/.kaggle/kaggle.json
!kaggle config path -p /content
!kaggle competitions download -c jigsaw-toxic-comment-classification-challenge
os.chdir('/content/competitions/jigsaw-toxic-comment-classification-challenge')
for file in os.listdir():
zip_ref = zipfile.ZipFile(file, 'r')
zip_ref.extractall()
zip_ref.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment