Learn practical skills, build real-world projects, and advance your career
!pip install jovian opendatasets --upgrade --quiet
|████████████████████████████████| 71kB 2.6MB/s eta 0:00:011 Building wheel for uuid (setup.py) ... done
dataset_url = 'https://www.kaggle.com/gregorut/videogamesales' 
# this cell will pull the data directly from Kaggle rather than having to download and upload the csv manually

import opendatasets as od
od.download(dataset_url)
100%|██████████| 381k/381k [00:00<00:00, 41.1MB/s]
Downloading videogamesales.zip to ./videogamesales
# You can see from the above output the zip was changed to ./videogamesales"
# we then input that below when giving the varable name for the data
data_dir = './videogamesales'
import os
os.listdir(data_dir)
['vgsales.csv']