From d351da79c1600485f7b49ac300cda5a21a913e59 Mon Sep 17 00:00:00 2001 From: xenofem Date: Sun, 4 Feb 2024 00:49:26 -0500 Subject: [PATCH] give more progress info during extract --- dlibrary/dlibrary.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlibrary/dlibrary.py b/dlibrary/dlibrary.py index cb48a20..3675ae0 100755 --- a/dlibrary/dlibrary.py +++ b/dlibrary/dlibrary.py @@ -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)