Learn practical skills, build real-world projects, and advance your career
!pip install jovian opendatasets --upgrade --quiet
# Change this
dataset_url = 'https://www.kaggle.com/ramjidoolla/ipl-data-set'
import opendatasets as od
od.download(dataset_url)
Please provide your Kaggle credentials to download this dataset. Learn more: http://bit.ly/kaggle-creds Your Kaggle username: ajithrajm Your Kaggle Key: ·········· Downloading ipl-data-set.zip to ./ipl-data-set
100%|██████████| 1.24M/1.24M [00:00<00:00, 27.9MB/s]
# Change this
data_dir = './ipl-data-set'
import os
os.listdir(data_dir)
['teamwise_home_and_away.csv',
 'matches.csv',
 'Players.xlsx',
 'deliveries.csv',
 'teams.csv',
 'most_runs_average_strikerate.csv']