Download this file
1 2 3 4 5 6 7 8
import zipfile import os path = "dataset" file = zipfile.ZipFile(os.path.join(path, "medical-question-answer-data.zip")) file.extractall(path) file.close()