(num_parsed: int, parser_name: str)
| 258 | print(' > Saved verbatim input to {}/{}'.format(SOURCES_DIR_NAME, source_file.rsplit('/', 1)[-1])) |
| 259 | |
| 260 | def log_parsing_finished(num_parsed: int, parser_name: str): |
| 261 | _LAST_RUN_STATS.parse_end_ts = datetime.now(timezone.utc) |
| 262 | print(' > Parsed {} URLs from input ({})'.format(num_parsed, parser_name)) |
| 263 | |
| 264 | def log_deduping_finished(num_new_links: int): |
| 265 | print(' > Found {} new URLs not already in index'.format(num_new_links)) |
no outgoing calls
no test coverage detected