Yuting Zhu

Results 1 comments of Yuting Zhu

You can replace lines 17-24 in `download.py` with the following code: ```python elif sys.argv[1] == "pm25": url = "https://www.microsoft.com/en-us/research/wp-content/uploads/2016/06/STMVL-Release.zip" wget.download(url, out="data") filename = "data/STMVL-Release.zip" with zipfile.ZipFile(filename) as z: z.extractall("data/pm25") ```