Add a progression bar for the current extraction.
(self)
| 62 | |
| 63 | @contextlib.contextmanager |
| 64 | def tqdm(self): |
| 65 | """Add a progression bar for the current extraction.""" |
| 66 | with utils.async_tqdm( |
| 67 | total=0, desc='Extraction completed...', unit=' file', mininterval=1.0 |
| 68 | ) as pbar_path: |
| 69 | self._pbar_path = pbar_path |
| 70 | yield |
| 71 | |
| 72 | def extract( |
| 73 | self, |
no outgoing calls
no test coverage detected