"machine-learning-databases/00210/donation.zip"
try:
print("Start downloading the data.")
r = urlopen(zip_file_url).read()
// unzip the content and put it in the krebsregister folder
z = zipfile.ZipFile(BytesIO(r))
After Change
zip_file_url = "http://archive.ics.uci.edu/ml/" \
"machine-learning-databases/00210/donation.zip"
folder = Path(get_data_home(), "krebsregister")
try:
print("Downloading data to {}.".format(folder))
r = urlopen(zip_file_url).read()