Answers for "library python to zip"

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
3

python zip file open as text

with ZipFile('spam.zip') as myzip:
    with myzip.open('eggs.txt') as myfile:
       eggs = io.TextIOWrapper(myfile)
Posted by: Guest on August-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language