give more progress info during extract

main
xenofem 2024-02-04 00:49:26 -05:00
parent 3efee8fe05
commit d351da79c1
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,8 @@ def extract(args):
work_extract_path = args.destdir / 'extract' / work_id
work_extract_path.mkdir(parents=True)
print(f'Extracting {zip_path} to {work_extract_path}')
with open_zipfile_with_encoding(zip_path) as z:
z.extractall(path=work_extract_path)