Skip to content

Commit c486896

Browse files
Add files via upload
1 parent c89a478 commit c486896

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# -*- coding: utf-8 -*-
2+
"""kaggle_data_download.ipynb
3+
4+
Automatically generated by Colaboratory.
5+
6+
Original file is located at
7+
https://colab.research.google.com/drive/1-bSWzsTCU18243Z75sY2zvs5q6uFbw6v
8+
9+
# Directly Upload Data from Kaggle
10+
11+
**Install Kaggle Package**
12+
"""
13+
14+
!pip install -q kaggle
15+
16+
from google.colab import files
17+
18+
files.upload()
19+
20+
!mkdir ~/.kaggle
21+
22+
!cp kaggle.json ~/.kaggle/
23+
24+
!chmod 600 ~/.kaggle/kaggle.json
25+
26+
!kaggle datasets list
27+
28+
!kaggle competitions download -c competitive-data-science-predict-future-sales

0 commit comments

Comments
 (0)