vote up 3 vote down star
2

I would like to compress a folder and all its sub-folders/files, and email the zip file as an attachment. What would be the best way to achieve this with Python?

flag

3 Answers

vote up 8 vote down check

You can use the zipfile module to compress the file using the zip standard, the email module to create the email with the attachment, and the smtplib module to send it - all using only the standard library.

Python - Batteries Included

If you don't feel like programming and would rather ask a question on stackoverflow.org instead, or (as suggested in the comments) left off the homework tag, well, here it is:

import smtplib
import zipfile
import tempfile
from email import encoders
from email.message import Message
from email.mime.base import MIMEBase
from email.mime.multipart import MIMEMultipart    

def send_file_zipped(the_file, recipients, sender='you@you.com'):
    zf = tempfile.TemporaryFile(prefix='mail', suffix='.zip')
    zip = zipfile.ZipFile(zf, 'w')
    zip.write(the_file)
    zip.close()
    zf.seek(0)

    # Create the message
    themsg = MIMEMultipart()
    themsg['Subject'] = 'File %s' % the_file
    themsg['To'] = ', '.join(recipients)
    themsg['From'] = sender
    themsg.preamble = 'I am not using a MIME-aware mail reader.\n'
    msg = MIMEBase('application', 'zip')
    msg.set_payload(zf.read())
    encoders.encode_base64(msg)
    msg.add_header('Content-Disposition', 'attachment', 
                   filename=the_file + '.zip')
    themsg.attach(msg)
    themsg = themsg.as_string()

    # send the message
    smtp = smtplib.SMTP()
    smtp.connect()
    smtp.sendmail(sender, recipients, themsg)
    smtp.close()

With this function, you can just do:

send_file_zipped('result.txt', ['me@me.org'])

You're welcome.

link|flag
That's one hell of an answer. – Jeremy Banks Oct 4 '08 at 0:51
What if the questioner left off the homework tag? – S.Lott Oct 4 '08 at 1:11
Since you got into the trouble of answering, edit your answer to add a directory tree in the zip, not just a single file. – ΤΖΩΤΖΙΟΥ Oct 4 '08 at 9:40
Thank you very much. It wasn't a homework. I'm a php programmer who's trying to switch to Python. Your answer helped me a lot. – Boolean Oct 4 '08 at 16:03
to get your sample working I had to remove the line smtp.connect() as it was giving me socket.error: [Errno 10061] No connection could be made because the target machine actively refused it. – Bryce Thomas Nov 14 at 15:02
show 1 more comment
vote up 0 vote down

Look at zipfile for compressing a folder and it's subfolders.

Look at smtplib for an email client.

link|flag
vote up 0 vote down

You can use zipfile that ships with python, and here you can find an example of sending an email with attachments with the standard smtplib

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.