Commande unzip dans Jupyter Lab

import zipfile
with zipfile.ZipFile("file.zip","r") as zip_ref:
    zip_ref.extractall("targetdir")
Muddy Millipede