Created
March 3, 2016 21:28
-
-
Save davidpelayo/139db134ca2337e966bb to your computer and use it in GitHub Desktop.
Simple mbox parser to csv in Python
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
import mailbox | |
import csv | |
writer = csv.writer(open("mbox-output.csv", "wb")) | |
for message in mailbox.mbox('file.mbox/mbox'): | |
writer.writerow([message['message-id'], message['subject'], message['from']]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi David,
I'm a newbie at running python scripts.
Following the steps on this blog https://kamal.io/blog/exporting-email-threads-from-gmail-into-csv-file
led me here.
I've extracted a mbox file (about 120KB), and have tried to run this script in the same directory using Python 3.8.3rc1 IDLE, but the resulting csv file has 0bytes.
I would appreciate any pointers, I am not sure what went wrong?