text
stringlengths
1
93.6k
f1 = open(file,'r')
fileContents=f1.read()
f1.close()
jsonDoc = json.loads(fileContents)
emailMessageID = jsonDoc['ygData']['msgId']
emailMessageSender = HTMLParser.HTMLParser().unescape(jsonDoc['ygData']['from']).decode(format).encode('utf-8')
emailMessageTimeStamp = jsonDoc['ygData']['postDate']
emailMessageDateTime = datetime.fromtimestamp(float(emailMessageTimeStamp)).strftime('%Y-%m-%d %H:%M:%S')
emailMessageSubject = HTMLParser.HTMLParser().unescape(jsonDoc['ygData']['subject']).decode(format).encode('utf-8')
emailMessageString = HTMLParser.HTMLParser().unescape(jsonDoc['ygData']['rawEmail']).decode(format).encode('utf-8')
message = email.message_from_string(emailMessageString)
messageBody = getEmailBody(message)
messageText = '-----------------------------------------------------------------------------------\n'
messageText += 'Post ID:' + str(emailMessageID) + '\n'
messageText += 'Sender:' + emailMessageSender + '\n'
messageText += 'Post Date/Time:' + emailMessageDateTime + '\n'
messageText += 'Subject:' + emailMessageSubject + '\n'
messageText += 'Message:' + '\n\n'
messageText += messageBody
messageText += '\n\n\n\n\n'
return messageText
def getYahooMessageYear(file):
f1 = open(file,'r')
fileContents=f1.read()
f1.close()
jsonDoc = json.loads(fileContents)
emailMessageTimeStamp = jsonDoc['ygData']['postDate']
return datetime.fromtimestamp(float(emailMessageTimeStamp)).year
# Thank you to the help in this forum for the bulk of this function
# https://stackoverflow.com/questions/17874360/python-how-to-parse-the-body-from-a-raw-email-given-that-raw-email-does-not
def getEmailBody(message):
body = ''
if message.is_multipart():
for part in message.walk():
ctype = part.get_content_type()
cdispo = str(part.get('Content-Disposition'))
# skip any text/plain (txt) attachments
if ctype == 'text/plain' and 'attachment' not in cdispo:
body += part.get_payload(decode=True) # decode
break
# not multipart - i.e. plain text, no attachments, keeping fingers crossed
else:
body += message.get_payload(decode=True)
return body
## This is where the script starts
if len(sys.argv) < 2:
sys.exit('You need to specify your group name')
groupName = sys.argv[1]
oldDir = os.getcwd()
if os.path.exists(groupName):
archiveDir = os.path.abspath(groupName + '-archive')
if not os.path.exists(archiveDir):
os.makedirs(archiveDir)
os.chdir(groupName)
for file in natsorted(os.listdir(os.getcwd())):
messageYear = getYahooMessageYear(file)
archiveFile = archiveDir + '/archive-' + str(messageYear) + '.txt'
archiveYahooMessage(file, archiveFile, messageYear, 'utf-8')
else:
sys.exit('Please run archive-group.py first')
os.chdir(oldDir)
print('Complete')
# <FILESEP>
# ##### BEGIN GPL LICENSE BLOCK #####
#
# <An addon to blend Gizmo and Modal operations more seamlessly>
# Copyright (C) <2022> <Mat Brady>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
import bpy
from bpy.types import (
AddonPreferences,