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)}') | |