Learn practical skills, build real-world projects, and advance your career
!pip install jovian opendatasets --upgrade --quiet
# getting the URL of the dataset to download the same
dataset_url = 'https://www.kaggle.com/bravehart101/sample-supermarket-dataset' 
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: arahim230 Your Kaggle Key: ········
100%|███████████████████████████████████████████████████████████████████████████████| 164k/164k [00:00<00:00, 1.91MB/s]
Downloading sample-supermarket-dataset.zip to .\sample-supermarket-dataset
data_dir='./sample-supermarket-dataset'
import os
os.listdir(data_dir)
['SampleSuperstore.csv']