Function
log_list_started
(filter_patterns: Optional[List[str]], filter_type: str)
Source from the content-addressed store, hash-verified
| 472 | |
| 473 | |
| 474 | def log_list_started(filter_patterns: Optional[List[str]], filter_type: str): |
| 475 | print('{green}[*] Finding links in the archive index matching these {} patterns:{reset}'.format( |
| 476 | filter_type, |
| 477 | **ANSI, |
| 478 | )) |
| 479 | print(' {}'.format(' '.join(filter_patterns or ()))) |
| 480 | |
| 481 | def log_list_finished(links): |
| 482 | from .index.csv import links_to_csv |
Tested by
no test coverage detected