Print total amt of found urls
This commit is contained in:
parent
726b60eb82
commit
299350a90a
|
@ -33,6 +33,9 @@ async def main() -> None:
|
|||
took = perf_counter() - start
|
||||
print(f"Took: {round(took, 2)} seconds")
|
||||
|
||||
total = len({url for urls in url_map.values() for url in urls}.union(set(url_map.keys())))
|
||||
print(f"Found {total} unique URLs")
|
||||
|
||||
print("Ranking...")
|
||||
start = perf_counter()
|
||||
|
||||
|
|
Loading…
Reference in a new issue