Answers for "read files from zip folder python"

7

python zip folder

import shutil
shutil.make_archive(output_filename, 'zip', dir_name)
Posted by: Guest on May-14-2020
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

Code answers related to "read files from zip folder python"

Python Answers by Framework

Browse Popular Code Answers by Language