Answers for "how to unzip a file using python"

5

how to unzip files using zipfile module python

import zipfile
with zipfile.ZipFile("file.zip","r") as zip_ref:
    zip_ref.extractall("targetdir")
Posted by: Guest on May-07-2020
4

unzip in python

import zipfile
with zipfile.ZipFile(path_to_zip_file, 'r') as zip_ref:
    zip_ref.extractall(directory_to_extract_to)
Posted by: Guest on November-22-2020
0

how to save unzipped files in python

import zipfile
def un_zipFiles(path):
    files=os.listdir(path)
    for file in files:
        if file.endswith('.zip'):
            filePath=path+'/'+file
            zip_file = zipfile.ZipFile(filePath)
            for names in zip_file.namelist():
                zip_file.extract(names,path)
            zip_file.close()
Posted by: Guest on June-26-2020
1

unzip files python

method = 'a'
from zipfile import ZipFile

with ZipFile(file_directory, 'r') as zip:
  zip.printdir()
  zip.extractall(save_directory)

method = 'b'
unzip -o file.zip
Posted by: Guest on June-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language