Работа с файлами / Работа с архивами

import zipfile

zip_file = "data.zip"
with zipfile.ZipFile(zip_file) as zip_ref:
    zip_ref.extractall("tmp/")