File size: 329 Bytes
3430157 cd5729a 3430157 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import zipfile
import os
# Path to the zip file
zip_file = 'SRUNU.zip'
# Directory to extract to (current directory in this case)
extract_dir = './'
# Open and extract the zip file
with zipfile.ZipFile(zip_file, 'r') as zip_ref:
zip_ref.extractall(extract_dir)
print(f'Files extracted to {os.path.abspath(extract_dir)}')
|