Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python unzip a zip

# app.py

from zipfile import ZipFile

with ZipFile('Mail3.zip', 'r') as zipObj:
   # Extract all the contents of zip file in different directory
   zipObj.extractall('temp')
   print('File is unzipped in temp folder')
Source by appdividend.com #
 
PREVIOUS NEXT
Tagged: #python #unzip #zip
ADD COMMENT
Topic
Name
2+8 =