[9f4ce6]: / medic_health_assistant / extract_data.py

Download this file

8 lines (6 with data), 157 Bytes

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()