HaveIBeenPwned / EmailAddressExtractor

A project to rapidly extract all email addresses from any files in a given path
BSD 3-Clause "New" or "Revised" License
67 stars 23 forks source link

Indicate processing status #12

Closed troyhunt closed 1 year ago

troyhunt commented 1 year ago

When a larger file is processed and the processing duration is longer, there should be some sort of indicator to show progress. For example, the legacy model would print the current line number every 10k rows. That's not a great solution though as a row could be just one email address or it could be thousands of SQL insert statements. A better solution would be console output every n seconds, for example, every 10 seconds print the current line number.

troyhunt commented 1 year ago

Cheers to @GStefanowich for implementing!