Answers for "module to extract files from zip folder python"

1

python zip extract directory

import zipfile

archive = zipfile.ZipFile('archive.zip')

for file in archive.namelist():
    if file.startswith('foo/'):
        archive.extract(file, 'destination_path')
Posted by: Guest on September-20-2020
0

how to extract zip file using python

ZipFile.extractall(path=None, members=None, pwd=None)
Posted by: Guest on May-19-2020

Code answers related to "module to extract files from zip folder python"

Python Answers by Framework

Browse Popular Code Answers by Language