Importazione di set di dati tramite l'API di Kaggle
!pip install kaggle


Dal menu di Account :

Faccio upload di kaggle.json :

configuring the path of Kaggle.json file
!mkdir -p ~/.kaggle
!cp kaggle.json ~/.kaggle/
!chmod 600 ~/.kaggle/kaggle.json
Importing the Earthquake Dataset

# API TO FETCH THE DATASET FROM KAGGLE
kaggle competetions download -c LANL-Earthquake-Prediction

Extracting the compressed Dataset

Last updated