Extract zip file
- zipfile
- unzip
- zip
This is unrelated, but once you have downloaded a zip file you will need to be able to extract its content. This example shows how to unzip a file already on your disk.
import zipfile
path = "developer_survey_2019.zip"
zf = zipfile.ZipFile(path)
zf.extractall()