import zipfile
from pathlib import Path
p = Path('.')
for f in p.glob('*.zip'):
with zipfile.ZipFile(f, 'r') as archive:
archive.extractall(path=f'./{f.stem}')
print(f'Done {f.stem}')
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)