Last active
April 30, 2024 14:22
-
-
Save hachesilva/226d58a08b63c49fff79c741fb4c3f92 to your computer and use it in GitHub Desktop.
Find the most frequent senders in your Gmail account
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://ryanfb.github.io/etc/2019/08/26/finding_the_most_frequent_senders_in_your_gmail_account.html | |
# Download a copy of your gmail account from https://takeout.google.com/ | |
grep '^From:' ~/Downloads/YOUR_TAKEOUT_FILE.mbox | cut -d'<' -f2 | tr -d '>' | sort | uniq -c | sort -rn > gmail-frequent-senders.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I created a video tutorial about NodeJS method to find frequency of senders, receivers and more. The NodeJS method is much easier, much faster and more reliable than Apps Script method. NodeJS method can analyze 200,000 mails in about 30 minutes.
https://www.youtube.com/watch?v=KKU84ogffeM