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?
|
2
|
|
|
|
|
|
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 IncludedIf 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
With this function, you can just do:
You're welcome. |
||||||||||
|
|
|
|
||
|
|
|
|
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 |
||
|
|
