Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 489 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 489 Bytes

Download Datasets from Zindi!

import ZindiDownloader.ZindiDownloader as zindi

# this can be found by inspecting html element of dataset's webpage. CTRL + f
url = 'https://api.zindi.africa/v1/competitions/sbtic-animal-classification/files/train_zebras.zip'

auth_token = '1234' # this can be found by inspecting html element of dataset's webpage. CTRL + f and  searh for 'auth'

downloader = zindi.ZindiDataDownloader(auth_token)

downloader.fetch(url, target_path='./')