adding unzip module

master
SLW\ARNAUA 2023-05-17 16:33:54 +02:00
parent 332e9aa705
commit 568c74f175
1 changed files with 6 additions and 0 deletions

6
unzip.py Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env python3
import sys
from zipfile import PyZipFile
for zip_file in sys.argv[1:]:
pzf = PyZipFile(zip_file)
pzf.extractall()